如何限制拖放(jquery可排序)?

时间:2016-01-13 02:54:22

标签: javascript jquery html css

我的代码是这样的:

  $("ol.example").sortable({
      group: "example",
  });

    $("ol.simple_with_drop").sortable({
    group: 'no-drop',
    handle: 'i.icon-move',
    onDragStart: function ($item, container, _super) {
      // Duplicate items of the no drop area
      if(!container.options.drop)
        $item.clone().insertAfter($item);
      _super($item, container);
    }
  });

  $("ol.simple_with_no_drop").sortable({
    group: 'no-drop',
    drop: false
  });

  $("ol.simple_with_no_drag").sortable({
    group: 'no-drop',
    drag: false
  });

演示&完整代码如下:https://jsfiddle.net/oscar11/vs4zggjf/

我想这样做:http://imgur.com/wIFwON3。所以,我想补充一些条件。客户只能拖入房型。房间类型不能拖到客户手中。是否可以做到?我试过但没有成功。

我从这里开始:https://johnny.github.io/jquery-sortable/#connected

谢谢

0 个答案:

没有答案