爲什麼不可能將定義的函數用作事件回調?使用定義的函數而不是匿名函數作爲回調
<div id="me">
<input>
</div>
$(document).ready(function(){
// $("#me").on('keyup', 'input', doit()); # doesn't work
// $("#me").on('keyup', 'input', 'doit'); # neither does this
$("#me").on('keyup', 'input', function() {
doit();
}); // well, this one works of course
});
function doit() {
console.log($("input").val());
}
當你通過doit()作爲回調,你 – roblarsen
你......它就像你進入虛空;) – andlrc
那個評論是非常懸念的。 – Marc