我有这个 html
<div id="wrap">
<div id="menu">
<div id="leftMenu">...width 250,height 100 position absolute left 0 top 0</div>
<div id="rightMenu">...width 250,height 100 position absolute right 0 top 0</div>
</div>
<div id="movable"></div>
</div>
和这个jQuery
$('body').on("mousedown",function(e){....});
$('#movable').on("mousemove",function(e){......});
看起来像这张图片 -
什么问题?实际上我只能在菜单下方开始移动,但我想开始在左侧菜单和右侧菜单之间移动是否可能?
编辑:我只有 1 个想法 - 删除带有 id 菜单的 div