3

这个问题似乎只发生在 chrome 这是 iframe 代码

<!DOCTYPE html>
<html>
<head>
    <script>
    function blahblah() { alert("test"); }
    </script>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Test Page</title>
</head>
<body>

    <p> lalalalallalala!!! </p>

</body>
</html>

这就是我创建 iframe 的方式

<iframe src="iframetest.html" id="iframetest"></iframe>

然后我尝试调用 iframe 的 blahblah() 函数:

$('#iframetest')[0].contentWindow.blahblah()

但这不起作用

4

1 回答 1

4

这有效:

  <iframe id=iframetest src=iframetest.html></iframe>
  <script>
      $(window).load(function(){
         document.getElementById('iframetest').contentWindow.blahblah();
      });
  </script>

请注意,我曾经$(window).load确保 iframe 已加载。使用load ondocument并不能确保 iframe 已加载。

当然,您的 iframe 必须与父文档具有相同的来源(这也意味着您必须http://在浏览器中打开文件而不是file://)。

编辑:工作演示

于 2012-08-29T08:38:24.690 回答