1

我知道这已被多次提及,但我找不到我正在寻找的确切内容。

Index.html 代码。

<html>
 <head>
    <meta charset="utf-8">
    <title>myPage</title>
    <script src="libs/h5.js"></script>
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
 </head>
 <body>
   <div id="content" width="1025" height="670">
      <iframe id="homePage" src="pages/homepage.html" width="1025" height="670" seamless></iframe>
   </div>
 </body>
</html>

h5.js 代码

function setTextHidden()
{
       <------------ **How do I call the hideText function inside the iframe from the parent?**
}

iframe 中 homepage.html 的 js 代码

function hideText()
{
   console.log("hideText");
}
4

1 回答 1

0

您可以使用window.frames属性访问windowiFrame 的对象,您可以从中调用hideText

function setTextHidden() {
    window.frames[0].hideText(); // assuming this is the first iframe on your page
}
于 2013-04-24T01:43:36.117 回答