例
返回與傳遞的數據on()為每個方法<p>元素:
$("p").each(function(i){
$(this).on("click", {x:i}, function(event){
alert("The
" + $(this).index() + ". paragraph has data: " + event.data.x);
});
});
試一試» 定義和用法
該event.data屬性包含傳遞給事件方法可選的數據時,當前執行的處理程序的約束。
句法
event.data
參數 | 描述 |
---|---|
event | 需要。 事件參數來自事件綁定功能 |