检测iframe元素的点击次数

时间:2016-02-21 18:16:37

标签: javascript jquery iframe

我有一个id=phramecomp的iframe,其中包含多个元素,例如链接和按钮。让我们假设我在iframe中有id=donuts的超链接。我想为此设置一个点击事件我怎么做到的?

这可能是许多问题的重复,但仍然有人可以告诉我该如何做到这一点?

注意:

  • iframe在其他php文件中的名称为 orderonlinelist.php
  • 我在 orderonline.php 文件中包含了这个iframe,我在这里写了我的点击功能。

     <iframe src="http://localhost/orderonline_list.php" name="phramecomp" id="phramecomp" frameborder="0" scrolling="yes" ></iframe>
    

这是我在 orderonline.php 文件中包含的内容。

1 个答案:

答案 0 :(得分:1)

您可以检测iframe中的点击事件

让我们假设你有一个iframe,其中 id =“Myframe”,而你的iframe中的图片有 id“Myimage”

因此,在图像Myimage中检测Myframe内的点击事件,你可以

 $('#Myframe').loads(function()
 {

 var frame=$('#Myframe').contents();
 frame.find('#Myimage').click(function(){
 //do anything
 });
 });