在HTML中可以对某一个容器屏蔽鼠标的点击事件不?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在HTML中可以对某一个容器屏蔽鼠标的点击事件不?相关的知识,希望对你有一定的参考价值。
在一个div容器里有一个iframe标签,iframe里有很多单击跳转链接,我不想它跳转,想对整个div进行鼠标点击(或整体)事件进行屏蔽,让点击失效,怎么各位前辈应该怎么实现我这个需求。 <iframe id="dd" frameborder="0" width="600" height="300" scrolling="no" src="http://tianqi.2345.com/plugin/widget/index.htm?s=1&z=1&t=0&v=0&d=3&bd=0&k=&f=&q=1&e=1&a=1&c=54511&w=385&h=96&align=center"></iframe>这个标签对是天气链接。
参考技术A 在html中可以对某一个容器屏蔽鼠标的点击事件的,具体做法如下:1、界定某一个容器,比如div。
<html>
...
<body>
<div id="doc">
<div id="content">
...
<input type="button" value="Login" id="login" />
...
</div id="content">
</div id="doc">
</body>
</html>
2、用js控制鼠标事件
$('#doc').click(function(e)
e.preventDefault();//阻止鼠标的默认点击事件
e.stopImmediatePropagation() ;//阻止冒泡事件发生
); 参考技术B iframe标签里面的元素要操作起来有些复杂,给个折中的思路。用一个透明的div标签把这个iframe给盖住,这样就点不下去了!
屏蔽用户双击按钮产生的后续点击事件重复发生问题
屏蔽web端双击鼠标产生问题
从上面两张图就可以看出,如果用户误操作双击“确认支付并出保险”按钮,则会出现如上图现象。如何消除此现象呢?
我想到的解决方法:在调用的click事件时,设置一个flag开关,flag类型为boolean型默认值为true的且为全局变量。flag为判断条件放入if语句中,当第一次点击触发事件时,设置flag为false并执行点击事件绑定方法。如此,当用户点击第二次时,flag为false,不执行点击事件绑定方法。这就有效避免了上图问题的发生。
var JourneyDetail = Widget.extend({ Implements:GovernmentProcureMent, attrs : { apvRuleAction : ‘‘, apvRule : null, journeyNo_cipher : null, corpCode : null, selectApver : ‘‘, approvalUrgency : ‘0‘, underLineAction : null, orderReturnAction : null, cancelAction : null, sendEmailAction : null, jourState : null, psgRemark : null, returnReason : null, airItemtktlAction:ctx+‘/journey/json/airItemtktl.html?requestType=AJAX‘, hotelManualAction:ctx+‘/hotel/json/hotelManualConfirm.html?requestType=AJAX‘, queryPayUrlAction:ctx+‘/pay/json/alipay/getDirectPayUrl.html?requestType=AJAX‘, queryEmergencyPayUrlAction:ctx+‘/pay/json/alipay/getDirectPayUrl.html?requestType=AJAX‘, queryPayTktlAction:ctx+‘/pay/json/alipay/getTktl.html?requestType=AJAX‘, singleTradeQuery:ctx+‘/pay/json/singleTradeQuery.html?requestType=AJAX‘, queryAiritemDetail:ctx+‘/journey/tc/queryAiritemDetail.html?requestType=AJAX‘, refundHoverListAction:ctx+‘/pay/json/refundHoverList.html?requestType=AJAX‘, defaultApvers:null, containerHight:null, validatorRefund:‘‘, /**支付紧急送审添加标识*/ approvalUrgencyPayed:‘0‘, //紧急送审已支付 approvalUrgencyNoPayed:‘0‘,//紧急送审待支付 urgencyApvCache : null, //紧急送审缓存 tcEmergencyPay:false,//TC紧急送审且需要支付的行程 /**判断GP保险按钮点击次数*/ GPInsureClickCount:true }, /**************************GP保险支付start*************************************/ /**查询GP保险信息*/ $(‘#gpInsurePayDialog‘).on(‘click‘,function(){ $(‘#gpInsurePayDialog‘).addClass(‘flow-btn disabled-btn‘); if(th.get(‘GPInsureClickCount‘)){ th.set(‘GPInsureClickCount‘,false); governmentProcureMent.gpInsurePayDialog(); } });
本文出自 “小番茄土豆fantasy” 博客,请务必保留此出处http://9victor9.blog.51cto.com/10800051/1782198
以上是关于在HTML中可以对某一个容器屏蔽鼠标的点击事件不?的主要内容,如果未能解决你的问题,请参考以下文章