如何在iframe中调用Javascript函数?

时间:2013-02-01 01:53:15

标签: javascript html iframe

  

可能重复:
  Iframe Function Calling From Iframe to parent page javascript function

我需要从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>

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

我刚刚复制了你的代码,它运行正常。