如何在Iframe网址更改时触发提交按钮

时间:2014-02-15 18:17:51

标签: javascript html iframe

我使用第三方iframe src,我想在iframe src更改时提交我的表单... 如何在内部Iframe源更改时触发提交按钮?

2 个答案:

答案 0 :(得分:0)

how to trigger the submit button when the inner Iframe source change?

如果iframe内容属于不同的域,则无法访问该内容。

I use a third party iframe src

所以defenitly不像其他域

同样来自w3school

Note: Because of security reasons, the contents of a document can be accessed from another document only if the two documents are located in the same domain.

答案 1 :(得分:0)

我更改了重定向的页面并添加了

<body onload="parent.parent.send()">

在主页面上(iframe所在的位置)我添加:

<script>
function send()
{
document.getElementById("gform_1").submit();
}
</script> 

它解决了我的问题。