模式对话框使用

1,弹出模式对话框
window.showModalDialog(url,self,'dialogHeight=520px;dialogWidth=800px;center=yes;resizable=yes;scroll=yes;status=no;');


2,对话框中的页面
<base target="_self">


3,取父页面的元素
window.dialogArguments.document.getElementById("a");


值得注意的地方: 1中的 self;2中的标签可以解决弹出新页面和本页不能提交的问题。

你可能感兴趣的:(JavaScript,html)