使整个元素可拖动,但并非所有元素都会导致拖动
我在 HTML 中有以下元素:
<div class="window" iname="win0">
<div class="title" prop="title">
</div>
<div class="content" prop="form">
</div>
</div>
我希望能够拖动整个元素,但前提是他们单击具有“title”类的 div 元素。基本上,它应该以普通的 Windows 应用程序形式出现。我将其设置为可拖动,但随后仅拖动该元素而不是它及其父元素(这是可以理解的)。我也使用 JQuery 和 JQuery UI,所以欢迎使用这些东西。
如果可以的话谢谢!
I have the following element in HTML:
<div class="window" iname="win0">
<div class="title" prop="title">
</div>
<div class="content" prop="form">
</div>
</div>
I want the whole element to able to be dragged, but only if they are clicking on the div element with the 'title' class. Basically, it is supposed to appear as a normal windows application form. I set just it as draggable but then only that element dragged instead of it and its parent (which is understandable). I'm using JQuery and The JQuery UI as well so anything utilizing those things are welcome.
Thanks if you can!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 handle 选项:
You can use the handle option:
请参阅文档,句柄就是您要寻找的内容: http://jqueryui.com/demos /draggable/#handle
See the doc for that, handles are what you're looking for : http://jqueryui.com/demos/draggable/#handle