使用iframe中的父表单捕获点击次数

时间:2013-03-27 17:24:27

标签: javascript jquery html iframe

我有一个包含iframe的父页面。 iframe内部是一个标签。在父页面上,我可以在按下该标签时触发事件吗?我知道,如果我将捕获事件的javascript放在iframe中,那么它将起作用,但对于我的项目,我需要让父页面捕获它。 到目前为止这是我的代码。 家长代码:

    <html>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
 <script type="text/javascript">
 var $MyFrame= $("#myiframe");
 $MyFrame.on("click", "a", function (e) {
         alert("hello");
     });
</script>
</head>
<body>
<iframe id="myiframe" height="3500" width="950" src="Iframe page" frameborder="0" style="display: block; margin: 10px auto;"></iframe>
</body>
</html>

这是我在iframe中的页面:

<html>
<head>
</head>
<body>
<a href="www.google.com">Click Me!</a>
</body>
</html>

这可能吗?

3 个答案:

答案 0 :(得分:0)

不确定但是,如果帧源位于同一来源,这可以帮助您.contents()

 var $MyFrame= $("#myiframe");
 $MyFrame.contents().find('a').on("click", function (e) {
     alert("hello");
 });

我注意到您已分配了id,并且您正在使用class引用该框架。

答案 1 :(得分:0)

您的myiframeid而非class ..使用ID选择器#

试试这个

var $MyFrame= $("#myiframe");
$MyFrame.on("click", "a", function (e) {
     alert("hello");
});

答案 2 :(得分:0)

var $MyFrame = $("#myiframe");

// You need to wait for the iFrame content to load first
// So, that the click events work properly
$MyFrame.load(function () {
    var frameBody = $MyFrame.contents().find('body');
    frameBody.find('a').click(function () {
        // here is the iframe a click callback
        alert("hello");
    });
});