码迷,mamicode.com
首页 > 其他好文 > 详细

屏蔽用户双击按钮产生的后续点击事件重复发生问题

时间:2016-05-23 19:21:30      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:用户   false   null   


屏蔽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

屏蔽用户双击按钮产生的后续点击事件重复发生问题

标签:用户   false   null   

原文地址:http://9victor9.blog.51cto.com/10800051/1782198

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!