admin管理员组文章数量:1345115
I have an IFRAME and I want to trigger an event (which is inside the iframe) from the parent of an IFRAME:
Just a rough example of what I am trying to do :
<iframe id="i">
<div id="test"></div>
<script>
$(document).ready(function() { // Event is binded inside the iframe
$("#test").live({ click : function() { alert("hello"); } });
});
</script>
</iframe>
<script>
$(document).ready(function() { // Want to trigger it from outside the iframe
$("#i").contents().find("#test").trigger("click");
});
</script>
I have an IFRAME and I want to trigger an event (which is inside the iframe) from the parent of an IFRAME:
Just a rough example of what I am trying to do :
<iframe id="i">
<div id="test"></div>
<script>
$(document).ready(function() { // Event is binded inside the iframe
$("#test").live({ click : function() { alert("hello"); } });
});
</script>
</iframe>
<script>
$(document).ready(function() { // Want to trigger it from outside the iframe
$("#i").contents().find("#test").trigger("click");
});
</script>
Share
Improve this question
edited Jun 9, 2012 at 21:39
Fong-Wan Chau
2,2894 gold badges26 silver badges43 bronze badges
asked Jun 8, 2012 at 5:56
King KongKing Kong
2,9155 gold badges29 silver badges39 bronze badges
2
- 1 you can't write your code inside iframe tag – user1432124 Commented Jun 8, 2012 at 6:00
-
@Somebodyisintrouble Please notice
JUST A ROUGH EXAMPLE
in my question – King Kong Commented Jun 8, 2012 at 6:02
2 Answers
Reset to default 8Your jquery is correct only problem is that that you are doing this when document is ready but at that time iframe is not getting fully loaded therefore div doesn't exist at that time and not triggers click. Change your main page script to
$(document).ready(function() {
//want to trigger it from outside the iframe
$("#i").load(function(){
$("#i").contents().find("div").trigger("click");
});
});
try this
ger javascript event from within an iFrame
but look at answer from Gilly
document.myFrameName.myFunction();
regards
本文标签: javascriptHow to trigger an iframe event JqueryStack Overflow
版权声明:本文标题:javascript - How to trigger an iframe event Jquery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743785394a2538592.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论