1

可能重复:
从 Iframe 到父页面 javascript 函数的 Iframe 函数调用

我需要从 iframe 运行 JavaScript 函数(在 HTML 页面中),我按照在网上找到的说明进行操作,但无法使其工作。有任何想法吗?

这是代码:

<html>
<head>
<script type="text/javascript"> 
function testFunction()
{
    var jsmessage = "Test succeed.";
    alert(jsmessage);
    return false;
}
</script>
</head>
<body>

<iframe id="myframe" src="iframe.html" height="260" width="620" frameborder="0"></iframe>

</body>
</html>

这是 iframe.html 代码:

<html>
<body>

<input type="button" onclick="parent.testFunction();" value="Test function">

</body>
</html>
4

2 回答 2

0

我刚刚复制了你的代码,它工作正常。

于 2013-02-01T02:15:50.433 回答
0

我已经测试过了,运行正常。为什么你说它不能工作?请详细写出错误信息。
还有一个问题,html5中不允许使用“frameborder”。我删除它。

于 2013-02-01T02:11:59.560 回答