gpt4 book ai didi

带有图标的 jQuery 可拖动 DIV

转载 作者:行者123 更新时间:2023-12-01 06:33:14 31 4
gpt4 key购买 nike

我想用 jQuery 的可拖动功能制作一些可拖动的 DIV,但这些 DIV 本身不应该是可拖动的,而只能借助每个 DIV 顶部的小图标,这样我只能在单击时移动它并将该图标拖动到 DIV 上方,而不是每次单击并拖动 div 时都进行拖动。

提前致谢

最佳答案

使用 handle :

$( "#draggable" ).draggable({
handle: "p"
});

片段

$(function() {
$( "#draggable" ).draggable({ handle: "p" });
$( "#draggable2" ).draggable({ cancel: "p.ui-widget-header" });
$( "div, p" ).disableSelection();
});
#draggable, #draggable2 { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 0 10px 10px 0; }
#draggable p { cursor: move; }
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="https://jqueryui.com/resources/demos/style.css">
<div id="draggable" class="ui-widget-content">
<p class="ui-widget-header">I can be dragged only by this handle</p>
</div>

<div id="draggable2" class="ui-widget-content">
<p>You can drag me around&hellip;</p>
<p class="ui-widget-header">&hellip;but you can't drag me by this handle.</p>
</div>

关于带有图标的 jQuery 可拖动 DIV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32222750/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com