0
請讓我知道這個備選功能..jQuery的.delegate()和.undelegate()在Chrome 56的工作及以上版本
$("#_body").undelegate('click').delegate(".class> a",'click',function(){
我想切換直播點擊門戶。
由於
請讓我知道這個備選功能..jQuery的.delegate()和.undelegate()在Chrome 56的工作及以上版本
$("#_body").undelegate('click').delegate(".class> a",'click',function(){
我想切換直播點擊門戶。
由於
嘗試on()
和off()
等:
$("#_body").off('click').on(".class> a",'click',function(){
// your code here
});
上使用jQuery()
在jQuery的1.7,在()引入方法,該方法是爲了簡化的努力和將大多數事件綁定函數合併爲一個統一的一致API。如果您有興趣瞭解on()如何替代所有這些事件方法的功能,請打開jQuery 1.7.1源代碼(https://github.com/jquery/jquery/blob/1.7/src/event.js#L965),您會發現bind(),live()和delegate()全部指向on()方法。
謝謝,但即使這是行不通的。點擊無法響應實時點擊,綁定解除綁定以及打開和關閉功能。還有其他功能嗎? –