添加数据

Posted mamingyuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加数据相关的知识,希望对你有一定的参考价值。

@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <script src="~/Scripts/jquery-1.7.2-min.js"></script>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
    <script type="text/javascript">
        $(function ()
        {
            $.ajax({
                url: http://localhost:8889/SchoolWebserice.asmx/GetSchools‘,
                type: post‘,
                
                success: function (data)
                {
                    $(data).each(function (index, data)
                    {
                        $("#s").append("<option value=‘"+data.SchoolCode+"‘>"+data.SchoolName+"</option>")
                    })
                }
            })
            $("#s").change(function ()
            {
                $.ajax({
                    url: http://localhost:8889/ClassWebService.asmx/GetClasses‘,
                    type: post‘,
                    data:{
                        SchoolCode:$("#s").val()
                    },
                    success: function (data) {
                        $("#c option").not(":first").remove();
                        $(data).each(function (index, data) {
                            $("#c").append("<option value=‘" + data.ClassCode + "‘>" + data.ClassName + "</option>")
                        })
                    }
                })
            })
            $("#Addbtn").click(function ()
            {
                $.ajax({
                    url: http://localhost:8889/StudentWebService.asmx/Add‘,
                    type: post‘,
                    data: {
                        SchoolCode: $("#s").val(),
                        ClassCode: $("#c").val(),
                        StudentName: $("input[name=StudentName]").val(),
                        Gender:$(":radio:checked").val()
                    },
                    success: function (data)
                    {
                        if (data > 0) {
                            alert("添加成功")
                        }
                        else {
                            alert(添加失败‘)
                        }
                    }
                })
            })
            $("#Button1").click(function ()
            {
                location.href = /Student/Show‘;
            })


        })
    </script>
</head>
<body>
   <table>
       
       <tr>
           <td>
               学校名称
           </td>
           <td>
               <select id="s" >
                   <option value="0">请选择</option>

               </select>
           </td>
       </tr>
       <tr>
           <td>
               班级名称
           </td>
           <td>
               <select id="c">
                   <option value="0">请选择</option>

               </select>
           </td>
       </tr>
       <tr>
           <td>学生姓名</td>
           <td>
               <input type="text" name="StudentName" />
           </td>
       </tr>
       <tr>
           <td>学生性别</td>
           <td>
               <input id="Radio1" type="radio"value="0"name="Gender" checked="checked"/><input id="Radio1" type="radio" value="1"name="Gender"/></td>
       </tr>
       <tr>
           <td>
               <input id="Addbtn" type="button" value="保存" />
               <input id="Button1" type="button" value="返回" />
           </td>
       </tr>
   </table>
</body>
</html>

 

以上是关于添加数据的主要内容,如果未能解决你的问题,请参考以下文章

如何管理在每个 git 版本中添加私有代码片段?

如何正确地将多个片段添加到片段过渡?

pycharm添加Odoo代码片段

sublime 添加代码片段(snippets)

如何在 Reactjs 中添加丰富的代码片段?

sublime text 3 添加代码片段