如何使用 jQuery 删除克隆图像?
我无法删除克隆图像。但是当我评论 helper:"clone"
选项时,这会起作用。
$(document).ready(function(){
$("#drag").draggable({
helper:"clone",
revert:"invalid"
});
$("#table4").droppable();
});
I can't drop a cloned image. But this works when I comment the helper:"clone"
option.
$(document).ready(function(){
$("#drag").draggable({
helper:"clone",
revert:"invalid"
});
$("#table4").droppable();
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该助手仅用于视觉效果。
如果你想克隆图像并删除它..尝试这样的事情:
the helper is only for visuals.
if you want to clone the image and drop it .. try something like that:
我认为这可以解决您的问题:当我制作可拖动克隆并将其放入可放置中时,我无法再次拖动它。
Ps.:一个简单的搜索就足以找到这个。
I think this resolves your issue: When I make a draggable clone and drop it in a droppable I cannot drag it again.
Ps.: A simple search was enough to find this.