在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1、弹出新页面,置顶 父页面: Button:
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="openDia();return false;" />
JavaScript: <script type="text/javascript"> 子页面:
<asp:Button ID="Button1" runat="server" OnClientClick="getSelected();return false;" Text="Button" />
2、弹出一个置顶的新页面,新页面关闭后刷新父页面 <a href="javascript:showModalDialog('UserList.aspx');window.location.reload()">aaaaa</a>
3、刷新父页面 window.location.reload()
4、 function update(obj) {
var ddl_sys = document.getElementById("ddl_system");
var sysValue = ddl_sys.options[ddl_sys.selectedIndex].value;
var ddl_modules = document.getElementById("ddl_modules");
var modulesValue = ddl_modules.options[ddl_modules.selectedIndex].value;
window.showModalDialog('PageAdd.aspx?isAdd=0&SystemID=' + sysValue + '&ModulesID=' + modulesValue + '&ID=' + obj, null, 'dialogHeight:600px;dialogWidth:650px;status:0;help:0 ');
} |
请发表评论