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