$(function() {
$(".items").on('click', 'a', function() {
//nothing gets executed here, alert wont come
alert("doesn't work")
}, function() {
//this function gets executed
alert("works")
});
});
爲什麼首先不能工作,是不是應該這樣工作?我的選擇是什麼?使用jQuery在()上執行功能的順序是什麼?
你究竟想要做什麼?我猜你的第三個參數(第一個函數)作爲數據傳入處理程序。 http://api.jquery.com/on/#on-events-selector-data-handlereObjectObject [FIDDLE](http://jsfiddle.net/Kjyac/) –
文檔清楚說明了這應該如何工作。 – Mathletics