AJAX 增删改查
添加
<script> function saveData() { $.ajax({ url: ‘https://localhost:44368/api/UserInfo/Add‘, type: ‘post‘, data: {UName:$("#UName").val(),Pass:$("#Pass").val()}, dataType: ‘json‘, success: function (data) { if (data > 0) { alert(‘添加成功‘); location.href = "/default/index"; } } }); } </script>
显示、删除
<script> LoadData(); function LoadData() { $.ajax({ url: ‘https://localhost:44368/api/UserInfo/GetAll‘, type: ‘get‘, data: {}, dataType: ‘json‘, success: function (data) { $("#tb").empty(); $(data).each(function () { $("#tb").append(‘<tr><td>‘ + this.UId + ‘</td><td>‘ + this.UName + ‘</td><td>‘ + this.Pass + ‘</td><td><input type="button" value="修改" onclick="Edit(‘ + this.UId + ‘)"/><input type="button" value="删除" onclick="Del(‘+this.UId+‘)"/></td></tr>‘); }); } }); } function Edit(Id) { location.href = "/Default/Edit/" + Id; } function Del(Id) { if (confirm("确认删除么?")) { $.ajax({ url: ‘https://localhost:44368/api/UserInfo/Remove/‘+Id, type: ‘post‘, data: {}, dataType: ‘json‘, success: function (data) { if (data > 0) { alert(‘删除成功‘); LoadData();//刷新页面 } } }); } } </script> }
修改
<script> var UId = @ViewData["UId"]; LoadData(); function saveData() { $.ajax({ url: ‘https://localhost:44368/api/UserInfo/Edit‘, type: ‘post‘, data: {UId:$("#UId").val(),UName:$("#UName").val(),Pass:$("#Pass").val()}, dataType: ‘json‘, success: function (data) { if (data > 0) { alert(‘修改成功‘); location.href = "/default/index"; } } }); } function LoadData() { $.ajax({ url: ‘https://localhost:44368/api/UserInfo/GetUserById/‘+UId, type: ‘get‘, data: {}, dataType: ‘json‘, success: function (data) { $("#UId").val(data.UId); $("#UName").val(data.UName); $("#Pass").val(data.Pass); } }); } </script>
相关推荐
时光如瑾雨微凉 2020-07-19
ppsurcao 2020-06-14
kentrl 2020-11-10
结束数据方法的参数,该如何定义?-- 集合为自定义实体类中的结合属性,有几个实体类,改变下标就行了。<input id="add" type="button" value="新增visitor&quo
ajaxyan 2020-11-09
zndy0 2020-11-03
学留痕 2020-09-20
Richardxx 2020-11-09
learningever 2020-09-19
chongxiaocheng 2020-08-16
ajaxhe 2020-08-16
lyqdanang 2020-08-16
curiousL 2020-08-03
TONIYH 2020-07-22
83510998 2020-07-18
坚持着执着 2020-07-16
jiaguoquan00 2020-07-07
李永毅 2020-07-05