返回值:Anythingevent.data
V1.1jQuery event.data 對(duì)象概述
當(dāng)前執(zhí)行的處理器被綁定的時(shí)候,包含可選的數(shù)據(jù)傳遞給jQuery.fn.bind。
示例
描述:
The description of the example.
jQuery 代碼:
$("a").each(function(i) {
$(this).bind('click', {index:i}, function(e){
alert('my index is ' + e.data.index);
});
});