我無法找到如何延遲小部件的事件處理程序。 我綁定的事件是這樣的:jQuery:在小部件中的延遲事件調用
enable: function() {
this.options.isEnabled = true;
this.element.bind("keyup", $.proxy(this, "_populateList"));
},
我想打電話給「_populateList」有延遲。但我用setTimeout的嘗試不起作用。
的 「_populateList」:
_populateList: function (event) {
var that = this;
// do my stuffs
}
感謝
哪裏是你的setTimeout使用的嘗試? – Kon