用法:
helper
默认:
"original"
允许使用辅助元素来拖动显示。
支持多种类型:-
String: 如果设置为
"clone"
,则元素将被克隆,克隆将被拖动。 - Function:一个函数,它将返回一个 DOMElement 以在拖动时使用。
代码示例:
使用指定的helper
选项初始化可拖动对象:
$( ".selector" ).draggable({
helper: "clone"
});
初始化后获取或设置helper
选项:
// Getter
var helper = $( ".selector" ).draggable( "option", "helper" );
// Setter
$( ".selector" ).draggable( "option", "helper", "clone" );
相关用法
- JQuery UI Draggable handle用法及代码示例
- JQuery UI Draggable snapMode用法及代码示例
- JQuery UI Draggable snap用法及代码示例
- JQuery UI Draggable start( event, ui )用法及代码示例
- JQuery UI Draggable cursorAt用法及代码示例
- JQuery UI Draggable containment用法及代码示例
- 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 cursor用法及代码示例
- 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用法及代码示例
- JQuery UI Draggable connectToSortable用法及代码示例
- JQuery UI Draggable classes用法及代码示例
注:本文由纯净天空筛选整理自jqueryui.com大神的英文原创作品 Draggable helper。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。