-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathw_dialog.html
21 lines (20 loc) · 1.08 KB
/
w_dialog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script type="text/javascript">
function closedialog(param) {
alert(param.msg);
return true;
}
</script>
<h2 class="contentTitle">弹出窗口</h2>
<div class="card">
<div class="pageContent">
<div style="display:block; overflow:hidden; width:400px; padding:0 10px; line-height:21px;">
<a class="button" href="demo_page_list.html" target="dialog" rel="dlg_page2">打开窗口1</a><br /><br />
<a class="button" href="demo/pagination/dialog1.html" target="dialog" rel="dlg_page2" width="645" height="370" title="自定义标题、高度、宽度" fresh="false">打开窗口2</a><br /><br />
<div class="divider"></div>
<a class="button" href="demo_page_list.html" target="dialog" rel="dlg_page4" >打开窗口3</a><br /><br />
<a class="button" href="demo/pagination/dialog1.html" target="dialog" rel="dlg_page5" close="closedialog" param="{msg:'gogo'}">打开窗口4</a><br /><br />
<div class="divider"></div>
<a class="button" href="demo/pagination/dialog1.html" target="dialog" mask="true" title="模态窗口 [自定义标题]">模态窗口</a><br /><br />
</div>
</div>
</div>