作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何从任何函数的ui & event
获取任何元素的id 和类名。请参阅下文以获得清晰的理解。
<div class"drag-class" id="drag1"> </div>
<div class"drag-class" id="drag2"> </div>
<div class"drop-class" id="drop1"> </div>
<div class"drop-class" id="drop2"> </div>
JS:
$(function(){
$('.drag-class').draggable();
$('.drop-class').droppable(function(){
accept: '.drag-class'.
drop: function(ui,event){
/*here i want to know the id of drag-class & drop-class element element*/
}
});
});'
最佳答案
来自docs -
In the callback, $(this) represents the droppable the draggable is dropped on. ui.draggable represents the draggable.
关于javascript - 如何从 ui 和事件获取类/id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7330656/
我是一名优秀的程序员,十分优秀!