admin管理员组文章数量:1341426
I'm trying to fire a click event on the click of an element inside an iframe, but it doesn't seem to be working. My current set up:
jsFiddle: /
jQuery:
$(document).ready(function () {
$('#this-iframe').load(function () {
$('#this-iframe').contents().find('img').live({
click: function () {
alert('clicked img');
}
});
});
});
Clicking on the image inside the iframe isn't firing the alert, I'm not sure why, or is there a better way to achieve this? Any suggestions would be greatly appreciated!
I'm trying to fire a click event on the click of an element inside an iframe, but it doesn't seem to be working. My current set up:
jsFiddle: http://jsfiddle/q4aa3/
jQuery:
$(document).ready(function () {
$('#this-iframe').load(function () {
$('#this-iframe').contents().find('img').live({
click: function () {
alert('clicked img');
}
});
});
});
Clicking on the image inside the iframe isn't firing the alert, I'm not sure why, or is there a better way to achieve this? Any suggestions would be greatly appreciated!
Share Improve this question asked Apr 6, 2014 at 18:59 user1374796user1374796 1,58213 gold badges46 silver badges76 bronze badges 4-
1
the iframe contains a page from a different domain,in this case the jsfiddle result frame is loaded from
fiddle.jshell
and your iframe is loadingjsfiddle
which means they are different domains so you do not have access to it. Also jQuery's.load
function loads in data from a url, it is not a onload event. jQuery load docs – Patrick Evans Commented Apr 6, 2014 at 19:03 -
@PatrickEvans
.load()
is also used to handle the load event: api.jquery./load-event – Jason P Commented Apr 6, 2014 at 19:10 - @PatrickEvans yes I understand that, the jsFiddle is just a demo of my setup. The domain I'm using this on, the iFrame content is also from the same domain, thus I have access to it. But this click function still isn't working. – user1374796 Commented Apr 6, 2014 at 19:16
- @JasonP Ahh I see. user1374796, even though there is a load event available, it does not get called on iframes so you will need some other method to know when the page is loaded. – Patrick Evans Commented Apr 6, 2014 at 19:20
1 Answer
Reset to default 10When you have the iframe on the same domain, you can use this script to catch clicks in the iframe. Don't use .live, it is depriciated as of jQuery 1.7.
var iframeBody = $('body', $('#iframe')[0].contentWindow.document);
$(iframeBody).on('click', 'img', function(event) {
doSomething();
});
You can manipulate the body through the iframeBody variable.
本文标签: javascriptjQuery click event inside iframeStack Overflow
版权声明:本文标题:javascript - jQuery: click event inside iframe - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743668848a2519191.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论