jQuery UI 由使用 jQuery JavaScript 庫實現的 GUI 小部件、視覺效果和主題組成。 jQuery UI 非常適合為網頁構建 UI 接口。它可用於構建高度交互的 Web 應用程序,也可用於輕鬆添加小部件。
jQuery UI Selectable 取消選擇事件用於在選擇操作期間觸發,在從選擇中刪除的每個元素上。
用法:
使用取消選擇回調函數初始化 Selectable 小部件。
$( ".selector" ).selectable({ unselecting:function( event, ui ) {} });
將事件偵聽器綁定到可選擇的取消選擇事件。
$( ".selector" ).on( "selectableunselecting", function( event, ui ) {} );
參數:該方法接受以下參數
- event:選擇項目時觸發此事件。
- ui:此參數是一個 jQuery 對象,用於當前正在選擇的可選項。
- unselecting:該參數屬於元素類型,是當前被選中的項目。
CDN 鏈接:添加項目所需的以下 jQuery Mobile 腳本。
<link rel=”stylesheet” href=”https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”https://code.jquery.com/jquery-1.12.4.js”></script>
<script src=”https://code.jquery.com/ui/1.12.1/jquery-ui.js”></script>
例:這個例子描述了 jQuery Mobile Selectable 取消選擇事件的使用。
HTML
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href=
"https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<script src=
"https://code.jquery.com/jquery-1.12.4.js">
</script>
<script src=
"https://code.jquery.com/ui/1.12.1/jquery-ui.js">
</script>
<style>
h1 {
color:green;
}
#list .ui-selecting {
background:greenyellow;
}
#list .ui-selected {
color:white;
background:green;
}
</style>
</head>
<body>
<center>
<h1>GeeksforGeeks</h1>
<h3>jQuery UI Selectable unselecting Event</h3>
<h3>GeeksforGeeks Subjects</h3>
<ul id="list" style="list-style:none">
<li>Data Structure</li>
<li>Algorithm</li>
<li>C++</li>
<li>Java</li>
<li>HTML</li>
<li>Bootstrap</li>
<li>PHP</li>
</ul>
<div class="res"></div>
<script>
$(document).ready(function () {
$("#list").selectable();
$("#list").selectable({
unselecting:function(event, ui) {
$(".res").html("Unselecting Event Triggered");
},
});
});
</script>
</center>
</body>
</html>
輸出:
參考: https://api.jqueryui.com/selectable/#event-unselecting
相關用法
- jQuery UI Selectable create用法及代碼示例
- jQuery UI Selectable start用法及代碼示例
- jQuery UI Selectable stop用法及代碼示例
- jQuery UI Selectable selecting用法及代碼示例
- jQuery UI Selectable unselected用法及代碼示例
- jQuery UI Selectable selected用法及代碼示例
- jQuery UI Selectable classes用法及代碼示例
- jQuery UI Selectable delay用法及代碼示例
- jQuery UI Selectable disabled用法及代碼示例
- jQuery UI Selectable cancel用法及代碼示例
- jQuery UI Selectable enable()用法及代碼示例
- jQuery UI Selectable disable()用法及代碼示例
- jQuery UI Selectable autoRefresh用法及代碼示例
- jQuery UI Selectable destroy()用法及代碼示例
- jQuery UI Selectable instance()用法及代碼示例
- jQuery UI Selectable widget()用法及代碼示例
- jQuery UI Selectable refresh()用法及代碼示例
- jQuery UI Selectable tolerance用法及代碼示例
- jQuery UI Selectable option()用法及代碼示例
- Fabric.js line selectable屬性用法及代碼示例
- Fabric.js Triangle selectable屬性用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 jQuery UI Selectable unselecting Event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。