可排序下降到文件夹div

时间:2015-04-22 06:11:26

标签: javascript jquery

我有类似的东西(图片)。

enter image description here

当前行为需要展开文件夹(目标)以将项目拖动到其他文件夹。

当我拖动到文件夹名称时,是否可以自动展开文件夹?

这是我的jquery看起来像:

$("#(phpgeneratedidforlist) div.item-list").sortable({items: "div.single-item",connectWith: "div.item-list"});

如果你想看到html的样子。 http://pastebin.com/xwu1D90s

我也尝试这个javascript(至少在我悬停时帮助我打开)仍然没有运气。

$(document).ready(function(){

  var isDown = false;   // Tracks status of mouse button

  $('body').mousedown(function() {
    isDown = true;      // When mouse goes down, set isDown to true
  })
  .mouseup(function() {
    isDown = false;    // When mouse goes up, set isDown to false
  });

  $(".not-list").mouseenter(function(){
    if(isDown) {       
       $('.expand-button').trigger('click');
    }
  });
});

0 个答案:

没有答案