jQuery UI 由 GUI 小部件、視覺效果和使用 Query JavaScript 庫實現的主題組成。 jQuery UI 非常適合為網頁構建 UI 接口。它可用於構建高度交互的 Web 應用程序,也可用於輕鬆添加小部件。
jQuery UI Selectable create 事件用於在創建 selectable 時觸發。
用法:
$(".selector").selectable({ create:function( event, ui ) {} });
將事件監聽器綁定到 selectablecreate 事件:
$( ".selector" ).on( "selectablecreate", function( event, ui ) {} );
CDN鏈接:首先,添加項目所需的jQuery UI腳本。
<link rel=”stylesheet” href=”//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”//code.jquery.com/jquery-1.12.4.js”></script>
<script src=”//code.jquery.com/ui/1.12.1/jquery-ui.js”></script>
例:
HTML
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href=
"//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<style>
h1 {
color:green;
}
#list .ui-selecting {
background:greenyellow;
}
#list .ui-selected {
background:green;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h3>jQuery UI Selectable create Event</h3>
<ul id="list">
<li>Data Structure</li>
<li>Algorithm</li>
<li>C++</li>
<li>Java</li>
<li id="GFG1">HTML</li>
<li id="GFG2">Bootstrap</li>
<li>PHP</li>
</ul>
<script>
$("#list").selectable({
create:function() {
alert("Create Event is Triggered!")
}
});
</script>
</body>
</html>
輸出:
參考: https://api.jqueryui.com/selectable/#event-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()用法及代碼示例
- Fabric.js line selectable屬性用法及代碼示例
- Fabric.js Triangle selectable屬性用法及代碼示例
- Fabric.js Rect selectable屬性用法及代碼示例
- Fabric.js Ellipse selectable屬性用法及代碼示例
- Fabric.js Polygon selectable屬性用法及代碼示例
- Fabric.js Textbox selectable屬性用法及代碼示例
- Fabric.js Polyline selectable屬性用法及代碼示例
- Fabric.js Group selectable屬性用法及代碼示例
- Fabric.js Image selectable屬性用法及代碼示例
注:本文由純淨天空篩選整理自ppatelkap大神的英文原創作品 jQuery UI Selectable create Event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。