Jquery拖放同时关闭父div?
假设我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
try this