1

是否可以将子 div 拖放到父级中。下面的代码可以通过 col1、col2、col3 拖放。我想在该列本身中拖动子部门。例如:如果列 Col1 包含子 A、B、C 并且 A 内的分区应该可以通过 A 排序。

 new glow.widgets.Sortable(
    '#cols-example .col1, #cols-example .col2, #cols-example .col3',
    {
            draggableOptions : {
                    handle : 'strong'
            }
    }
);
4

1 回答 1

0
new glow.widgets.Sortable(
'#cols-example .col1, #cols-example .col2, #cols-example .col3',
{
        draggableOptions : {
                handle : 'strong'
        }
}
);

  new glow.widgets.Sortable(
  '#A .maincat',
   {
       constrainDragTo : '#A',
       axis            : 'y',
       onSort : function () {

         // your code here    

            }

    });

上面的代码工作正常。将 sub div 放在 A 中,如果我们给一个类,它只能在 div 中拖动

于 2011-08-13T10:35:55.983 回答