1

9 天前(在撰写本文时)以下错误已重新打开: 可排序:可排序选项容差的错误行为(或错误文档):“相交”

不幸的是,我等不及 jQuery 来解决这个问题。

我有一个容器,其中包含可以垂直排序的项目(所有<div>s)。这些项目具有不同的高度(并且这些高度都不是预定义的)。

有没有合适的解决方法?

4

1 回答 1

2

我自己写了一个解决方法,灵感来自dioslaska对他自己的问题的解决方案: jQuery UI sortable tolerance option not working as expected

它工作得非常顺利:)

删除该tolerance选项并使用以下函数作为sort选项:

function( e, ui ) {
    var container   = $( this ),
        placeholder = container.children( '.ui-sortable-placeholder:first' );

    var helpHeight  = ui.helper.outerHeight(),
        helpTop     = ui.position.top,
        helpBottom  = helpTop + helpHeight;

    container.children().each( function () {
        var item = $( this );

        if( !item.hasClass( 'ui-sortable-helper' ) && !item.hasClass( 'ui-sortable-placeholder' )) {
            var itemHeight = item.outerHeight(),
                itemTop    = item.position().top,
                itemBottom = itemTop + itemHeight;

            if(( helpTop > itemTop ) && ( helpTop < itemBottom )) {
                var tolerance = Math.min( helpHeight, itemHeight ) / 2,
                    distance  = helpTop - itemTop;

                if( distance < tolerance ) {
                    placeholder.insertBefore( item );
                    container.sortable( 'refreshPositions' );
                    return false;
                }

            } else if(( helpBottom < itemBottom ) && ( helpBottom > itemTop )) {
                var tolerance = Math.min( helpHeight, itemHeight ) / 2,
                    distance  = itemBottom - helpBottom;

                if( distance < tolerance ) {
                    placeholder.insertAfter( item );
                    container.sortable( 'refreshPositions' );
                    return false;
                }
            }
        }
    });
}
于 2013-03-27T16:27:42.453 回答