<input class="list_item_title mini" name="list_item[title]" size="30" type="text" value="What happens when a user creates a new item?">
JS:
function text_2(e) {
console.log(e.val());
};
$(function() {
$('input.list_item_title').keyup($.debounce(250, text_2));
});
e.val()目前不起作用。我怎麼能通過輸入,所以我可以得到的價值?
由於
是它是這一個http://code.google.com/p/jquery-debounce/? –
是的,這是一個! http://benalman.com/code/projects/jquery-throttle-debounce/docs/files/jquery-ba-throttle-debounce-js.html – TheExit
「不起作用」是什麼意思?你究竟想要做什麼? 「輸入」? 「價值」?爲什麼這麼模糊?嘗試在你的問題中寫一些句子。 –