使用JQ的.on()綁定事件委托事件,會(huì)執(zhí)行多次函數(shù)的解決辦法
問題:
$('.u_s_val').on('click','.c_div',function(){
? ? ? ? ? ?console.log(‘執(zhí)行了’)
? ? ? ? });
控制臺(tái)會(huì)輸出兩次。
解決,函數(shù)內(nèi)return false
有效
$('.u_s_val').on('click','.c_div',function(){
? ? ? ? ? ?console.log(‘執(zhí)行了’)
? ? ? ? ? ? return false
? ? ? ? });
標(biāo)簽: