jQuery UI 可选取消选项
jQuery UI 由 GUI 小部件、视觉效果和使用 Query JavaScript 库实现的主题组成。 jQuery UI 非常适合为网页构建 UI 界面。它可用于构建高度交互的 Web 应用程序,也可用于轻松添加小部件。
jQuery UI Selectable cancel 选项用于防止选择从匹配的元素开始。
句法:
使用取消选项初始化可选元素:
$(".selector").selectable({
cancel: ".cancel"
});
初始化后设置或返回取消选项:
// Set the cancel option
$( ".selector" ).selectable(
"option", "cancel", "a,.cancel" );
// Return the cancel option
var cancel = $( ".selector" )
.selectable( "option", "cancel" );
CDN 链接:首先,添加项目所需的 jQuery UI 脚本。
例子:
HTML
GeeksforGeeks
jQuery UI Selectable cancel Option
- Data Structure
- Algorithm
- C++
- Java
- HTML
- Bootstrap
- PHP
输出:
参考: https://api.jqueryui.com/selectable/#option-cancel