一、弹出窗口
在引用JS、CSS的前提下
<button type="button" class="layui-btn" onclick="xadmin.open('班期添加','.;,600,600)">添加</button>
注意:必须包含type="button",否则弹出的窗口会“一闪而过”。
二、关闭弹出层并刷新父窗口
1、使用jquery方式
$(function() { //关闭弹窗 $(document).on('click', '#closeBtn', function() { //先得到当前iframe层的索引 var index = ); ();//刷新父页面,注意一定要在关闭当前iframe层之前执行刷新 (index); //再执行关闭 }); });
2、在a中应用
在弹出的窗口添加数据,成功后弹出提示,点击关闭后,自动关闭弹窗,并刷新父窗口。
protected void Button1_Click(object sender, EventArgs e) { if (!DoAdd()) { Re("<script>alert('错误!');</script>"); return; } else { Re("<script>alert('发表成功!');var index = );();(index); </script>"); } }