EasyUI——弹窗展示数据代码

JS代码:

$("#editDv").css("display","block");
$("#editDv").dialog({
title: "温馨提示:请在此编辑您的用户信息~",
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 />
<table>

<tr>
<td>编号</td><td /></td>
</tr>
</table>
</form>
</div>

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

效果展示:

EasyUI——弹窗展示数据代码