JavaScript show modal dialog
Index.html:
<html> <head> <script anguage="javascript"> function show() { var settings="dialogWidth:245px;dialogHeight:390px;resizable:no;status:no"; var ret = window.showModalDialog("sub.html","",settings); alert("Question: What are you clicked in modal dialog? \n Answer: "+ret); } </script> </head> <body> <input type="button" value="Show Modal Dialog" onclick="show();"/> </body> </html>
sub.html:
<html> <head> <script language="javascript"> function done() { window.returnValue=" You are clicked done."; window.close(); } function cancel() { window.returnValue=" You are clicked cancel."; window.close(); } </script> </head> <body> <input type="button" value="Done" onclick="done();"/> <input type="button" value="Cancel" onclick="cancel();"/> </body> </html>
相关推荐
nmgxzm00 2020-11-10
ifconfig 2020-10-14
hhanbj 2020-11-17
zfszhangyuan 2020-11-16
古叶峰 2020-11-16
一个智障 2020-11-15
jipengx 2020-11-12
81427005 2020-11-11
xixixi 2020-11-11
游走的豚鼠君 2020-11-10
苗疆三刀的随手记 2020-11-10
Web卓不凡 2020-11-03
小飞侠V 2020-11-02
帕尼尼 2020-10-30
爱读书的旅行者 2020-10-26
帕尼尼 2020-10-23
杏仁技术站 2020-10-23
淼寒儿 2020-10-22