使用JQuery的 on(),来绑定事件,如下
$(document).on(‘event’, ‘selector’, function(){})
因为JQuery的事件绑定不是覆盖的,而是append的,为防止重复绑定,在绑定前先解绑,使用off(),如下
$(document).off(‘event’).on(‘event’, ‘selector’, function() {})
今天遇到的问题,记录下
使用JQuery的 on(),来绑定事件,如下
$(document).on(‘event’, ‘selector’, function(){})
因为JQuery的事件绑定不是覆盖的,而是append的,为防止重复绑定,在绑定前先解绑,使用off(),如下
$(document).off(‘event’).on(‘event’, ‘selector’, function() {})
今天遇到的问题,记录下
本文标题:JQuery 事件绑定 重复触发 解决方案
本文链接:https://www.haomeiwen.com/subject/eqhavftx.html
网友评论