0

我有一个包含 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>

这可能吗?

4

3 回答 3

0

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

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

我注意到你已经分配了一个id并且你正在引用那个框架class

于 2013-03-27T17:27:57.993 回答
0

你的myiframeisid而不是class.. 使用 id 选择器#

试试这个

var $MyFrame= $("#myiframe");
$MyFrame.on("click", "a", function (e) {
     alert("hello");
});
于 2013-03-27T17:29:35.880 回答
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");
    });
});
于 2013-03-27T17:32:32.750 回答