我有一个使用 ShowModalDialog 显示的模态对话框,其中我有一个表单提交到模态对话框之外的 iframe。我想在提交完成后关闭模式对话框。问题是我无法从window_onload
我提交的页面上访问模式对话框。
在模态对话框中:
form.method = "POST"
form.target = "myiframe"
form.action = "save.asp"
form.submit
在保存.asp
sub window_onload
'Do stuff
Here i want to tell the modal dialog to close itself
end sub
这可能吗?