A.和on()沒什么區(qū)別 B.可以刪除已綁定的事件 C.給元素綁定一次性事件 D.可以代替live()使用
A.$("p").on("click",function(){alert($(this).text())}) B.$("p").on("onclick",function(){alert($(this).text())}) C.$("p").on("click",function(){alert(this.text())}) D.以上都不正確
A.$("div").not(".div01") B.not(".div01").$("div") C.not("div:’div01’") D.$("div").not()=="div01"