0
$("textarea").on("change",function(){
console.log("changed");
});
現在,如果我使用此代碼觸發當值設定的setTimeout
setTimeout(function(){$("textarea").val("13")},2000);
然後在更改事件不會觸發更改文本區域的價值,有沒有什麼方法來檢測這種變化在textarea。