在jQuery1.7中 .delegate()已被.on()取代。對於早期版本,它仍然使用事件委託的最有效手段。
在事件綁定和委派,delegate()和on在一般情況下,這兩種方法是等效的。
.delegate() 指定的元素(屬於被選元素的子元素)增加一個或多個事件處理程序,並規定當這些事件發生時運行的函數。
// jQuery 1.4.3 // jQuery 1.7
$( elements ).on( events, [selector], data, handler );
例如:.delegate() code:
程式碼如下
$("table").delegate("td","click",function(){
alert("hello");
});
.on() code:
代碼如下:
代碼如下:
$("table").on("click", "td", function() {
alert("hi");
});
PS: 兩兩下>PS: 兩兩下者區別是seleter和events順序不同
delegate和on方法被選元素的子元素必須是"合法的"子元素。例如複製程式碼
程式碼如下:
$("table").delegate("button ","click",function(){...});
$("table").on("click", "p", function(){...});
就不起作用,因為正常情況下,table子元素應為tr,td...
on(events,[selector],[data],fn),參數[selector]是可選,
一個選擇器字串用於過濾器的觸發事件的選擇器元素的後代。
例如:複製程式碼
程式碼如下:
$("table"). on("click", ".td1", function() {
alert("hi");
});
過濾class為td1的table子元素過濾class為td1的table子元素
而delegate的selector是必要的。