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 />
<table>

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

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

效果展示:

EasyUI——弹窗展示数据代码

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-17
  • 2022-12-23
  • 2021-09-03
  • 2022-12-23
  • 2021-07-04
猜你喜欢
  • 2022-12-23
  • 2021-05-28
  • 2021-09-20
  • 2022-12-23
  • 2021-04-11
  • 2021-09-20
相关资源
相似解决方案