admin管理员组文章数量:1344216
This is my iframe:
#htmlDiv {
position: absolute;
top: 0px;
left: 300px;
height: 650px;
width: 1130px;
}
#htmlFrame {
position: absolute;
top: 0px;
left: 0px;
margin: 10px 10px 10px 10px;
padding: 0px 0px 0px 0px;
height: 630px;
width: 1110px;
}
<div id="htmlDiv">
<iframe id="htmlFrame"></iframe>
</div>
$('#htmlFrame').click(function(){
alert('clicked');
});
But when I click inside the iframe, it doesn't show "clicked".
How do I detect click inside iframe.
This is my iframe:
#htmlDiv {
position: absolute;
top: 0px;
left: 300px;
height: 650px;
width: 1130px;
}
#htmlFrame {
position: absolute;
top: 0px;
left: 0px;
margin: 10px 10px 10px 10px;
padding: 0px 0px 0px 0px;
height: 630px;
width: 1110px;
}
<div id="htmlDiv">
<iframe id="htmlFrame"></iframe>
</div>
$('#htmlFrame').click(function(){
alert('clicked');
});
But when I click inside the iframe, it doesn't show "clicked".
How do I detect click inside iframe.
- 1 Possible duplicate of How to add click event to a iframe with JQuery – Jaumzera Commented May 24, 2016 at 3:22
- I have tried it but it doesn't work to me. – Larry Lu Commented May 24, 2016 at 3:24
- Take a look at the answer stackoverflow./questions/2381336/… – Masum Billah Commented May 24, 2016 at 3:25
- So try this one: jsfiddle/4HQc4, from stackoverflow./questions/15080222/add-click-event-to-iframe – Jaumzera Commented May 24, 2016 at 3:26
- Possible duplicate of: stackoverflow./questions/6452502/… – Anialation Commented May 24, 2016 at 3:30
3 Answers
Reset to default 6You cannot detect a click event on an iframe
. What can be done is you can place a overlapping layer
on top of your iframe
and capture the click event of the overlapping div. See below snippet:
$("#overlap").on("click",function(){
alert("click");
$("#overlap").css("z-index",-1);
});
$("#htmlFrame").on("mouseleave",function(){
$("#overlap").css("z-index",1);
});
#htmlDiv {
position: absolute;
top: 0px;
left: 300px;
height: 65px;
width: 113px;
}
#htmlFrame {
position: absolute;
top: 0px;
left: 0px;
margin: 10px 10px 10px 10px;
padding: 0px 0px 0px 0px;
height: 63px;
width: 110px;
}
#overlap{
position: absolute;
background-color:trasparent;
top: 0px;
left: 0px;
margin: 10px 10px 10px 10px;
padding: 0px 0px 0px 0px;
width: 110px;
height:63px;
}
<script src="https://ajax.googleapis./ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<div id="htmlDiv">
<iframe id="htmlFrame"></iframe>
<div id="overlap">
</div>
</div>
Your current code is working fine, try to click it to the border of the iframe
and the alert will show. I tried to create a solution for you by adding an overlay to the iframe
You can see the DEMO
<div id="htmlDiv">
<iframe id="htmlFrame"></iframe>
<div id="overlay">
</div>
</div>
I did this:
<div style="position:relative;">
<iframe src="..."></iframe>
<div style="position:absolute;top:0;left:0;right:0;bottom:0;eventual mouse cursor style" onclick="eventual alternative action"></div>
</div>
本文标签: javascriptHow to detect click event in iframe using jqueryStack Overflow
版权声明:本文标题:javascript - How to detect click event in iframe using jquery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743742240a2531106.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论