javascript-如何获取拖放了元素的元素的对象?
作者:互联网
我正在尝试使用使用droppable尝试的jquery来获取拖放元素的元素,但该对象的左和顶部都返回0.这是代码,任何人都可以帮忙吗?
$(".cards_images").droppable({
drop:function(event,ui){
var pos = $(this).position()
alert(pos.top)
}
})
解决方法:
$(this)是droppable,除了缺少一些代码外,您的代码没有任何问题; :-)我只有tested,并获得非零的位置.您是否报告了缺少的库或其他JavaScript错误?
标签:jquery-ui,javascript,jquery 来源: https://codeday.me/bug/20191208/2088569.html