您好,登錄后才能下訂單哦!
這篇文章主要介紹如何使用callbacks.remove(),文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
callbacks.remove( callbacks )
描述: 從回調列表中的刪除一個回調或回調集合。
添加的版本: 1.7callbacks.remove( callbacks )
callbacks
類型: Function, Array
從回調列表中刪除的一個函數,或者函數數組。
此方法返回綁定它的那個回調對象 (this).
例子:
使用 callbacks.remove() 從回調列表中的刪除回調:
// a sample logging function to be added to a callbacks list
var foo = function( value ) {
console.log( "foo: " + value );
};
var callbacks = $.Callbacks();
// add the function "foo" to the list
callbacks.add( foo );
// fire the items on the list
callbacks.fire( "hello" );
// outputs: "foo: hello"
// remove "foo" from the callback list
callbacks.remove( foo );
// fire the items on the list again
callbacks.fire( "world" );
// nothing output as "foo" is no longer in the list
以上是“如何使用callbacks.remove()”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。