2

如果可能,我可以单击 iframe 中的元素并让它在其呈现的页面上执行功能吗?

例如:

<div class="page">

    <iframe class="frame">[... the source will render: <div class="clickme"></div>...] 
    </iframe>

...同时,回到主页...

    <script>
          $(".clickme").click(function(){
                 alert('clicked');
           });
    </script>
</div>

还要编辑,我忘了提到页面加载后 iframe 的 src 会发生变化,这可能是一个障碍!

它似乎对我不起作用,我在这里找不到合适的答案/问题。谢谢!

4

3 回答 3

5

如果用户单击 iframe 中的某个项目应导致在父级中触发函数,那么假设您doStuff在父级中调用了一个函数,则以下操作将起作用:

window.top.doStuff();

当然,这需要 iframe 的域与父页面的域匹配。

如果需要跨域怎么办?

如果您需要跨域通信,那么 HTML5 postMessage 函数将授权您将父页面注册为 iframe 的侦听器,从而允许 iframe 将消息传递到父页面。

在父 HTML 中,注册一个监听器:

// register to listen for postMessage events
window.addEventListener("message", receiveMessage, false);  

// this is the callback handler to process the event
function receiveMessage(event)  
{  

  // you're responsible for your own security. Make sure requests are 
    // coming from domains you whitelist!
  if (event.origin !== "http://example.org:8080")  
    return;  

  if(event.data == "click!") {
      // do your stuff on the parent page here
  }
}  

在 iframe HTML 页面中:

// pass the string "click!" to the parent page, where the receiveMessage
 // handler will take action when it sees the message matches.
top.window.postMessage("click!", targetOrigin);

有关更多详细信息,请参见window.postMessage

于 2012-05-20T04:09:52.387 回答
2

您可以使用 content() 访问 iframe 中的元素

$('.frame').contents().find('.clickme').each(function(){
   $(this).click(function(){ //this is .clickme
     //enter code here
   })
});

请注意,如果 iframe 的 src 来自不同的域,您将被拒绝访问。

于 2012-05-20T03:52:43.213 回答
1

您可以在 iframe 中调用函数,

window.frames['iframeName'].yourFunction();

在 iframe 中

    <script>
              $(".clickme").click(function(){
                      yourFunction();
               });

             function yourFunction(){
              alert('clicked');
             }
   </script>
于 2012-05-20T03:47:09.790 回答