現在我正在使用jQuery來確定輸入何時開始輸入,然後暫停。Angularjs在輸入中輸入時暫停
var timeoutId;
$('#container').on('input propertychange change', 'form', function(e) {
clearTimeout(timeoutId);
timeoutId = setTimeout(function() {
console.log("paused");
}, 3000);
});
我正在嘗試找到一個合適的Angularjs解決方案來完成此任務。
我想我需要使用ng-change
或類似於我的輸入區域,但我是新來的角和任何建議將不勝感激。