0

假设我有这样的代码:

<html>
   <head>
   </head>
 <body>
      <iframe>
          <script>
   //execute javascript here to append another piece of javascript in parent body tag
          </script>
      </iframe>
 </body>
</html>

现在我想在该 iFrame 中执行一些 javascript 以在父 body 标记中附加另一段 javascript。

4

1 回答 1

1

如果 iframe 属于主窗口的同一个域,你可以简单地做

top.functionToBeCalled(argument);
于 2012-06-23T11:18:43.563 回答