码迷,mamicode.com
首页 > 其他好文 > 详细

EasyUI——弹窗展示数据代码

时间:2016-03-20 11:50:10      阅读:353      评论:0      收藏:0      [点我收藏+]

标签:

JS代码:

$("#editDv").css("display","block");
$("#editDv").dialog({
title: "温馨提示:请在此编辑您的用户信息~",
width:500,
height: 300,
collapsible: true,
maximizable: true,
buttons: [{
text: ‘确认修改‘,
iconCls: ‘icon-ok‘,
handler: function () {
//通过异步请求 修改数据
var recData = $("#frm1").serialize();
$.get("/UsersHandler/Edit",recData, function (data) {
if (data == "ok") {
$("#editDv").dialog("close");
updatePage();//调用更新方法
}
})
}
}]
});

-------------------------------------------------------------------------------

html代码:

<div id="editDv">
<h3>修改用户信息界面</h3>
<hr />
<form id="frm1">
<input type="hidden" id="id" name="id" value=""/>
<table>

<tr>
<td>编号</td><td id="idId"></td>
</tr>
<tr>
<td>用户名</td><td><input type="text" id="txtName" name="userName" value=""/></td>
</tr>
<tr>
<td>密码</td><td><input type="text" id="txtPwd" name="password" value=""/></td>
</tr>
</table>
</form>
</div>

----------------------------------------------------------------------------------

效果展示:

技术分享

EasyUI——弹窗展示数据代码

标签:

原文地址:http://www.cnblogs.com/shuai7boy/p/5297361.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!