我想知道用iframe替换window.showModalDialog()的最佳方法是什么,以便将iframe的提交值存储到变量中。
我目前已经提交了模态的提交值,并在提交时将其发送给变量。如代码示例所示。 link.html参数指向包含要提交的表单的网址。
我创建了一个iframe,其中使用了与window.showModalDialog()
相同的源(src)。源代表指向要提交的表单的链接。
var dialogAnswer = window.showModalDialog(link.html, object, parameters);
是否可以像使用showModalDialog()
一样将iframe的已提交源(src)值存储到(dialogAnswer)这样的变量中?