unbind

unbind,解開,解放。

英文用法,簡明釋義,網路釋義,例句,計算機語言,概述,返回值,參數,示例,

英文用法

簡明釋義

vt.解開,解放
第三人稱單數:unbinds過去式:unbound過去分詞:unbound現在分詞:unbinding

網路釋義

1. 釋放
2. 切斷
同義詞
unlockloosenliberate
反義詞tie

例句

The girl started to unbind her braided hair.
女孩開始解開編起來的頭髮。
Use the following procedure to unbind applications from servers.
使用以下過程,取消應用程式到伺服器的綁定
Provided by jukuu
Utility to unbind office2000and earlier binder files.
用於拆散office2000及早期活頁夾檔案的實用程式。
Provided by jukuu
Allowance our best2% try utmost if unsettled we unbind arbitration.
我方最多只能賠償2%,如無法解決,願訴諸仲裁。
Provided by jukuu
Unbind your soul. it is my soul mate and you are my soul's beloved.
放飛你的靈魂,我心心相印的夥伴。
Provided by jukuu

計算機語言

概述

bind()的反向操作,從每一個匹配的元素中刪除綁定的事件。
如果沒有參數,則刪除所有綁定的事件。
你可以將你用bind()註冊的自定義事件取消綁定。
I如果提供了事件類型作為參數,則只刪除該類型的綁定事件。
如果把在綁定時傳遞的處理函式作為第二個參數,則只有這個特定的事件處理函式會被刪除。
英譯
This does the opposite of bind, it removes bound events from each of the matched elements.
Without any arguments, all bound events are removed.
You can also unbind custom events registered with bind.
If the type is provided, all bound events of that type are removed.
If the function that was passed to bind is provided as the second argument, only that specific event handler is removed.
注意:如果未規定參數,則 unbind() 方法會刪除指定元素的所有事件處理程式。
注意:unbind() 方法適用於任意由 jQuery 添加的事件處理程式。

返回值

jQuery

參數

type (String) : (可選) 事件類型
data (Function) : (可選) 要從每個匹配元素的事件中反綁定的事件處理函式

示例

把所有段落的所有事件取消綁定
jQuery 代碼:
$("p").unbind()
將段落的click事件取消綁定
jQuery 代碼:
$("p").unbind( "click" )
刪除特定函式的綁定,將函式作為第二個參數傳入
jQuery 代碼:
var foo = function () {
// code to handle some kind of event
};
$("p").bind("click", foo); // ... now foo will be called when paragraphs are clicked ...
$("p").unbind("click", foo); // ... foo will no longer be called.

相關詞條

熱門詞條

聯絡我們