用法:
classes
类型:Object
默认:
{}
指定要添加到小部件元素的其他类。中指定的任何类主题部分可以用作键来覆盖它们的值。要了解有关此选项的更多信息,请查看了解有关 classes
选项的文章.
代码示例:
使用指定的 classes
选项初始化可拖动对象,更改 ui-draggable
类的主题:
$( ".selector" ).draggable({
classes: {
"ui-draggable": "highlight"
}
});
获取或设置 classes
选项的属性,初始化后,此处读取和更改 ui-draggable
类的主题:
// Getter
var themeClass = $( ".selector" ).draggable( "option", "classes.ui-draggable" );
// Setter
$( ".selector" ).draggable( "option", "classes.ui-draggable", "highlight" );
相关用法
- JQuery UI Draggable cursorAt用法及代码示例
- JQuery UI Draggable containment用法及代码示例
- JQuery UI Draggable cursor用法及代码示例
- JQuery UI Draggable connectToSortable用法及代码示例
- JQuery UI Draggable cancel用法及代码示例
- JQuery UI Draggable create( event, ui )用法及代码示例
- JQuery UI Draggable snapMode用法及代码示例
- JQuery UI Draggable snap用法及代码示例
- JQuery UI Draggable start( event, ui )用法及代码示例
- JQuery UI Draggable snapTolerance用法及代码示例
- JQuery UI Draggable option用法及代码示例
- JQuery UI Draggable disabled用法及代码示例
- JQuery UI Draggable stop( event, ui )用法及代码示例
- JQuery UI Draggable revertDuration用法及代码示例
- JQuery UI Draggable iframeFix用法及代码示例
- JQuery UI Draggable enable用法及代码示例
- JQuery UI Draggable drag( event, ui )用法及代码示例
- JQuery UI Draggable scrollSensitivity用法及代码示例
- JQuery UI Draggable axis用法及代码示例
- JQuery UI Draggable scrollSpeed用法及代码示例
- JQuery UI Draggable appendTo用法及代码示例
- JQuery UI Draggable zIndex用法及代码示例
- JQuery UI Draggable destroy用法及代码示例
- JQuery UI Draggable scroll用法及代码示例
- JQuery UI Draggable addClasses用法及代码示例
注:本文由纯净天空筛选整理自jqueryui.com大神的英文原创作品 Draggable classes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。