Jquery EasyUI弹出窗体
Posted Demo233
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery EasyUI弹出窗体相关的知识,希望对你有一定的参考价值。
$("#btnCreate").click(function () { $("#modalwindow").html("<iframe width=‘100%‘ height=‘100%‘ scrolling=‘no‘ frameborder=‘0‘‘ src=‘@Url.Action("Create")‘></iframe>"); $("#modalwindow").window({ title: ‘@Resource.Create‘, width: 700, height: 400, iconCls: ‘icon-add‘ }).window(‘open‘); }); $("#btnEdit").click(function () { var row = $(‘#List‘).datagrid(‘getSelected‘); if (row != null) { $("#modalwindow").html("<iframe width=‘100%‘ height=‘99%‘ frameborder=‘0‘ src=‘@Url.Action("Edit")?id=" + row.Id + "&Ieguid=" + GetGuid() + "‘></iframe>"); $("#modalwindow").window({ title: ‘@Resource.Edit‘, width: 700, height: 400, iconCls: ‘icon-edit‘ }).window(‘open‘); } else {
$.messageBox5s(‘@Resource.Tip‘, ‘@Resource.PlaseChooseToOperatingRecords‘);
} });
以上是关于Jquery EasyUI弹出窗体的主要内容,如果未能解决你的问题,请参考以下文章
Jquery EasyUI的Dialog 怎么在iframe中弹出和不在iframe中弹出一样在窗口最顶层?