必威体育Betway必威体育官网
当前位置:首页 > IT技术

jQuery sortable使用详解

时间:2019-10-01 22:43:21来源:IT技术作者:seo实验室小编阅读:74次「手机版」
 

sortable

先来看看 sortable 有哪些参数?(源自官网 jQuery UI 1.10)

1、APPendTo

作用:确定可移动的辅助元素在拖动时可以被添加到何处。

例子:$( "tbody" ).sortable({ appendTo: document.body });

它的参数值支持的对象有:jQuery对象、Element、Selector(选择器)、String("parent"),默认值为 "parent"。

2、axis

作用:确定元素可以在水平或垂直方向上实现拖动。

例子:$( "tbody" ).sortable({ axis: "x"});

参数值:"x","y",false,默认值为 false 水平或垂直都可以实现拖动。

3、cancel

作用: 对符合选择器匹配规则的元素不进行排序。

例子:$( "tbody" ).sortable({ cancel: "tr"});于是 tr 就不可被拖动;

参数值:Select 选择器,默认值为:"input,textarea,button,select,option"。

4、connectwith

作用:连接两个可拖动的 sortable ,列表中的项目需被连接的另一个 sortable 元素的选择器。这是一个单向关系,如果您想要项目被双向连接,必须在两个 sortable 元素上都设置 connectWith 选项。

例子:首先可以做两个 table (table1、table2),

$("#table1 tbody").sortable({ connectWith: "#table2 tbody" }).disableSelection();

$("#table2 tbody").sortable({ connectWith: "#table1 tbody" }).disableSelection();

于是,就可以实现两个 table 之间 tr 的拖动功能。

参数值:Select 选择器,默认为 false 。

5、containment

作用:定义一个边界,限制拖动范围在指定的DOM元素内。

注意:为限制拖动范围,指定的元素必须有一个可计算的宽度和高度(但不一定是显式的)。例如,如果你的sortable元素的子元素有float: left样式,

并且指定containment: "parent",那么sortable/parent容器必须要有float: left样式,或者他将有height: 0样式,导致不确定的行为。

例子:$( "tbody" ).sortable({ containment: "tbody"});这样就可以将 tr 的可拖动范围限制在 tbody 中,不会出现滚动条的情况!

参数值:Element元素、Select选择器、String("parent"、"document"、"window")。

6、cursor

作用:定义拖动是鼠标的样式。

例子:$( "tbody" ).sortable({ cursor: "move"});这样在拖动的时候鼠标就可以变为 十字光标 。

7、cursorAt

作用:定义鼠标在拖动时候的位置,坐标可通过一个或两个键的组合成一个哈希给出: { top, left, right, bottom }。

例子:$( "tbody" ).sortable({cursorAt: { left: 5,top:5 }});

效果:当拖动时,被拖动的行会自动移动,最终鼠标与被拖动行的相对位置为{left:5,top:5}。

参数值:{ top, left, right, bottom }(object),默认值:false。

8、delay

作用:在排序拖动开始多少毫秒后元素才开始移动; 这可以防止意外的点击造成元素的拖动。

例子:$( "tbody" ).sortable({ delay: 150});

参数值:integer 毫秒。

所有的事件回调函数都有两个参数:event和ui,浏览器自有event对象,和经过封装的ui对象   

ui.helper - 表示sortable元素的JQuery对象,通常是当前元素的克隆对象   

ui.position - 表示相对当前对象,鼠标的坐标值对象{top,left}   

ui.offset - 表示相对于当前页面,鼠标的坐标值对象{top,left}   

ui.item - 表示当前拖拽的元素   

ui.placeholder - 占位符(如果有定义的话)   

ui.sender - 当前拖拽元素的所属sortable对象(仅当元素是从另一个sortable对象传递过来时有用)   

·参数(参数名 : 参数类型 : 默认值)   

appendTo : String : 'parent' 

defines where the helper that moves with the mouse is being appended to during the drag (for example, to resolve overlap/zIndex issues).   

初始:$('.selector').sortable({ appendTo: 'body' });   

获取:var appendTo = $('.selector').sortable('option', 'appendTo');   

设置:$('.selector').sortable('option', 'appendTo', 'body');   

axis : String : false    

如果有设置,则元素仅能横向或纵向拖动。可选值:'x', 'y' 

初始:$('.selector').sortable({ axis: 'x' });   

获取:var axis = $('.selector').sortable('option', 'axis');   

设置:$('.selector').sortable('option', 'axis', 'x');   

cancel : Selector : ':input,button'    

阻止排序动作在匹配的元素上发生。   

初始:$('.selector').sortable({ cancel: 'button' });   

获取:var cancel = $('.selector').sortable('option', 'cancel');   

设置:$('.selector').sortable('option', 'cancel', 'button');   

connectWith : Selector : false    

允许sortable对象连接另一个sortable对象,可将item元素拖拽到另一个中。   

初始:$('.selector').sortable({ connectWith: '.otherlist' });   

获取:var connectWith = $('.selector').sortable('option', 'connectWith');   

设置:$('.selector').sortable('option', 'connectWith', '.otherlist');   

containment : Element, String, Selector : false    

约束排序动作只能在一个指定的范围内发生。可选值:DOM对象, 'parent', 'document', 'window', 或jQuery对象   

初始:$('.selector').sortable({ containment: 'parent' });   

获取:var containment = $('.selector').sortable('option', 'containment');   

设置:$('.selector').sortable('option', 'containment', 'parent');   

cursor : String : 'auto' 

定义在开始排序动作时,如果的样式。   

初始:$('.selector').sortable({ cursor: 'crosshair' });   

获取:var cursor = $('.selector').sortable('option', 'cursor');   

设置:$('.selector').sortable('option', 'cursor', 'crosshair');   

cursorAt : Object : false    

当开始移动时,鼠标定位在的某个位置上(最多两个方向)。可选值:{ top, left, right, bottom }.   

初始:$('.selector').sortable({ cursorAt: 'top' });   

获取:var cursorAt = $('.selector').sortable('option', 'cursorAt');   

设置:$('.selector').sortable('option', 'cursorAt', 'top');   

delay : Integer : 0   

以毫秒为单位,设置延迟多久才激活排序动作。此参数可防止误点击。   

初始:$('.selector').sortable({ delay: 500 });   

获取:var delay = $('.selector').sortable('option', 'delay');   

设置:$('.selector').sortable('option', 'delay', 500);   

distance : Integer : 1   

决定至少要在元素上面拖动多少像素后,才正式触发排序动作。   

初始:$('.selector').sortable({ distance: 30 });   

获取:var distance = $('.selector').sortable('option', 'distance');   

设置:$('.selector').sortable('option', 'distance', 30);   

dropOnempty : Boolean : true    

是否允許拖拽到一個空的sortable对象中。   

初始:$('.selector').sortable({ dropOnEmpty: false });   

获取:var dropOnEmpty = $('.selector').sortable('option', 'dropOnEmpty');   

设置:$('.selector').sortable('option', 'dropOnEmpty', false);   

forceHelperSize : Boolean : false    

If true, forces the helper to have a size.   

初始:$('.selector').sortable({ forceHelperSize: true });   

获取:var forceHelperSize = $('.selector').sortable('option', 'forceHelperSize');   

设置:$('.selector').sortable('option', 'forceHelperSize', true);   

forcePlaceholderSize : Boolean : false 

If true, forces the placeholder to have a size.   

初始:$('.selector').sortable({ forcePlaceholderSize: true });   

获取:var forcePlaceholderSize = $('.selector').sortable('option', 'forcePlaceholderSize');   

设置:$('.selector').sortable('option', 'forcePlaceholderSize', true);   

grid : Array : false    

将排序对象的item元素视为一个格子处理,每次移动都按一个格子大小移动,数组值:[x,y]   

初始:$('.selector').sortable({ grid: [50, 20] });   

获取:var grid = $('.selector').sortable('option', 'grid');   

设置:$('.selector').sortable('option', 'grid', [50, 20]);   

handle : Selector, Element : false    

限制排序的动作只能在item元素中的某个元素开始。   

初始:$('.selector').sortable({ handle: 'h2' });   

获取:var handle = $('.selector').sortable('option', 'handle');   

设置:$('.selector').sortable('option', 'handle', 'h2');   

helper : String, Function : 'original'    

设置是否在拖拽元素时,显示一个辅助的元素。可选值:'original', 'clone

初始:$('.selector').sortable({ helper: 'clone' });   

获取:var helper = $('.selector').sortable('option', 'helper');   

设置:$('.selector').sortable('option', 'helper', 'clone');   

items : Selector : '> *'    

指定在排序对象中,哪些元素是可以进行拖拽排序的。   

初始:$('.selector').sortable({ items: 'li' });   

获取:var items = $('.selector').sortable('option', 'items');   

设置:$('.selector').sortable('option', 'items', 'li');   

opacity : Float : false    

定义当排序时,辅助元素(helper)显示的透明度。   

初始:$('.selector').sortable({ opacity: 0.6 });   

获取:var opacity = $('.selector').sortable('option', 'opacity');   

设置:$('.selector').sortable('option', 'opacity', 0.6);   

placeholderType: StringDefault: false    

设置当排序动作发生时,空白占位符的CSS样式。   

初始:$('.selector').sortable({ placeholder: 'ui-state-highlight' });   

获取:var placeholder = $('.selector').sortable('option', 'placeholder');   

设置:$('.selector').sortable('option', 'placeholder', 'ui-state-highlight');   

revert : Boolean : false 

如果设置成true,则被拖拽的元素在返回新位置时,会有一个动画效果。   

初始:$('.selector').sortable({ revert: true });   

获取:var revert = $('.selector').sortable('option', 'revert');   

设置:$('.selector').sortable('option', 'revert', true);   

scroll : Boolean : true 

如果设置成true,则元素被拖动到页面边缘时,会自动滚动。   

初始:$('.selector').sortable({ scroll: false });   

获取:var scroll = $('.selector').sortable('option', 'scroll');   

设置:$('.selector').sortable('option', 'scroll', false);   

scrollsensitivity : Integer : 20    

设置当元素移动至边缘多少像素时,便开始滚动页面。   

初始:$('.selector').sortable({ scrollSensitivity: 40 });   

获取:var scrollSensitivity = $('.selector').sortable('option', 'scrollSensitivity');   

设置:$('.selector').sortable('option', 'scrollSensitivity', 40);   

scrollSpeed : Integer : 20   

设置页面滚动的速度。   

初始:$('.selector').sortable({ scrollSpeed: 40 });   

获取:var scrollSpeed = $('.selector').sortable('option', 'scrollSpeed');   

设置:$('.selector').sortable('option', 'scrollSpeed', 40);   

tolerance : String : 'intersect' 

设置当拖动元素越过其它元素多少时便对元素进行重新排序。可选值:'intersect', 'pointer' 

intersect:至少重叠50%   

pointer:鼠标指针重叠元素   

初始:$('.selector').sortable({ tolerance: 'pointer' });   

获取:var tolerance = $('.selector').sortable('option', 'tolerance');   

设置:$('.selector').sortable('option', 'tolerance', 'pointer');   

zIndex : Integer : 1000   

设置在排序动作发生时,元素的z-index值。   

初始:$('.selector').sortable({ zIndex: 5 });   

获取:var zIndex = $('.selector').sortable('option', 'zIndex');   

设置:$('.selector').sortable('option', 'zIndex', 5);   

·事件   

start   

当排序动作开始时触发此事件。   

定义:$('.selector').sortable({ start: function(event, ui) { ... } });   

绑定:$('.selector').bind('sortstart', function(event, ui) { ... });   

sort   

当元素发生排序时触发此事件。   

定义:$('.selector').sortable({ sort: function(event, ui) { ... } });   

绑定:$('.selector').bind('sort', function(event, ui) { ... });   

change   

当元素发生排序且坐标已发生改变时触发此事件。   

定义:$('.selector').sortable({ change: function(event, ui) { ... } });   

绑定:$('.selector').bind('sortchange', function(event, ui) { ... });   

beforestop   

当排序动作结束之前触发此事件。此时占位符元素和辅助元素仍有效。   

定义:$('.selector').sortable({ beforeStop: function(event, ui) { ... } });   

绑定:$('.selector').bind('sortbeforeStop', function(event, ui) { ... });   

stop   

当排序动作结束时触发此事件。   

定义:$('.selector').sortable({ stop: function(event, ui) { ... } });   

绑定:$('.selector').bind('sortstop', function(event, ui) { ... });   

update   

当排序动作结束时且元素坐标已经发生改变时触发此事件。   

定义:$('.selector').sortable({ update: function(event, ui) { ... } });   

绑定:$('.selector').bind('sortupdate', function(event, ui) { ... });   

receive   

当一个已连接的sortable对象接收到另一个sortable对象的元素后触发此事件。   

定义:$('.selector').sortable({ receive: function(event, ui) { ... } });   

绑定:$('.selector').bind('sortreceive', function(event, ui) { ... });   

over   

当一个元素拖拽移入另一个sortable对象后触发此事件。   

定义:$('.selector').sortable({ over: function(event, ui) { ... } });   

绑定:$('.selector').bind('sortover', function(event, ui) { ... });   

out   

当一个元素拖拽移出sortable对象移出并进入另一个sortable对象后触发此事件。   

定义:$('.selector').sortable({ out: function(event, ui) { ... } });   

绑定:$('.selector').bind('sortout', function(event, ui) { ... });   

activate   

当一个有使用连接的sortable对象开始排序动作时,所有允许的sortable触发此事件。   

定义:$('.selector').sortable({ activate: function(event, ui) { ... } });   

绑定:$('.selector').bind('sortactivate', function(event, ui) { ... });   

deactivate   

当一个有使用连接的sortable对象结束排序动作时,所有允许的sortable触发此事件。   

定义:$('.selector').sortable({ deactivate: function(event, ui) { ... } });   

绑定:$('.selector').bind('sortdeactivate', function(event, ui) { ... });   

·方法   

destory   

从元素中移除拖拽功能。   

用法:.sortable( 'destroy' )   

disable   

禁用元素的拖拽功能。   

用法:.sortable( 'disable' )   

enable   

启用元素的拖拽功能。   

用法:.sortable( 'enable' )   

option   

获取或设置元素的参数。   

用法:.sortable( 'option' , optionName , [value] )   

serialize   

获取或设置序列化后的每个item元素的id属性。   

用法:.sortable( 'serialize' , [options] )   

toArray   

获取序列化后的每个item元素的id属性的数组。   

用法:.sortable( 'toArray' )   

refresh   

手动重新刷新当前sortable对象的item元素的排序。   

用法:.sortable( 'refresh' )   

refreshPositions   

手动重新刷新当前sortable对象的item元素的坐标,此方法可能会降低性能。   

用法:.sortable( 'refreshPositions' )   

cancel   

取消当前sortable对象中item元素的排序改变。   

用法:.sortable( 'cancel' )

相关阅读

PHP中 Public、Private、Protect 的使用方法及区别

public 【公共的】 可以在程序中的任何位置(类内、类外)被其他的类和对象调用。子类可以继承和使用父类中所有的公共成员。 Private

Dump文件的生成和使用

1 简介 第一次遇到程序崩溃的问题,之前为单位开发了一个插件程序,在本机运行没有出现问题,但把生成的可执行文件拷贝到服务器上一运

ASP.NET中使用UpdatePanel实现局部异步刷新方法和攻略

asp.net UpdatePanel实现异步局部刷新如有雷同,不胜荣欣,若转载,请注明鉴于最近项目需要,研究了一下UpdatePanel控件的使用方法,现总结

go之官方依赖管理工具dep安装和使用

前言大家都知道go没有一个自己的包管理平台。社区里go的第三方包托管在各个git托管平台。需要用到包时通过go get 命令工具安装,但

生物信息学常用软件—2(PCR引物设计及相关软件使用)

原文:http://blog.csdn.net/shmilyringpull/article/details/7342277lPCR引物设计及相关软件使用主要内容1、背景2、PCR引物设计原

分享到:

栏目导航

推荐阅读

热门阅读