如何获取我将“可拖动”元素拖动到的元素的 id元素
所以我的页面上有这样的div:
<div class="drag"></div>
和这个jquery代码:
<script type="text/javascript">
//<!--
$(document).ready(function() {
$('.drag').draggable();
}); //-->
</script>
可拖动效果效果很好。
但我想找出可拖动 div 被删除的 HTML 标签的 id。如果有的话。
因此,如果我将 div 拖到 id="my-table" 的表中,我想在 js 中获取该值并用它做一些事情。
So I have divs like this on my page:
<div class="drag"></div>
And this jquery code:
<script type="text/javascript">
//<!--
$(document).ready(function() {
$('.drag').draggable();
}); //-->
</script>
The draggable effect works well.
But I would like to find out an id of a HTML tag where the draggable div gets dropped. If it has any.
So if I drag the div to a table with id="my-table", I want to get that value inside js and do something with it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你有一个可拖动的,你也有一个可放置的......对吗?
所以你可以这样做:
if you have a draggable you also have a droppable...correct?
so you could do something like this:
我刚刚注意到这篇文章,因为我最近发布了一个非常类似的问题,所以我将在这里留下链接,以防有人想看一下。
如何在 snap 上查找 jQuery UI 可拖动元素的“对齐”元素
I just noticed this post because I recently posted a very similar question, so I will just leave the link here in case anyone wants tot take a look.
How to find out about the "snapped to" element for jQuery UI draggable elements on snap