使整个元素可拖动,但并非所有元素都会导致拖动

发布于 2024-12-03 19:08:08 字数 374 浏览 1 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挽你眉间 2024-12-10 19:08:08

您可以使用 handle 选项:

$(".window").draggable({
    // your options,
    handle: ".title"
});

You can use the handle option:

$(".window").draggable({
    // your options,
    handle: ".title"
});
赏烟花じ飞满天 2024-12-10 19:08:08

请参阅文档,句柄就是您要寻找的内容: http://jqueryui.com/demos /draggable/#handle

See the doc for that, handles are what you're looking for : http://jqueryui.com/demos/draggable/#handle

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文