Jquery拖放同时关闭父div?

发布于 2024-12-15 16:48:38 字数 340 浏览 3 评论 0原文

假设我的 div 中有一个图像,

<div id="myImage"><img src="#" id="dragImage"></div>

我希望能够使用 jquery .draggable 来拖动该图像,并在拖动图像的同时关闭父 div。

我以为这会起作用,但事实并非如此

$('#myImage').click(function () { 
$('#dragImage').draggable();
$('#myImage').hide();

});  

Say I have an image in a div

<div id="myImage"><img src="#" id="dragImage"></div>

I want to be able to drag that image using jquery .draggable and also close the parent div while still dragging the image.

I thought this would work, but it doesn't

$('#myImage').click(function () { 
$('#dragImage').draggable();
$('#myImage').hide();

});  

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦巷 2024-12-22 16:48:38
$( "#dragImage" ).draggable({
   drag: function(event, ui) { $('#myImage').hide();}
});

试试这个

$( "#dragImage" ).draggable({
   drag: function(event, ui) { $('#myImage').hide();}
});

try this

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