this.$container.find('[data-uk-sortable]').on('stop.uk.sortable', function(e, el, type){
//type is null here
}
this.$container.on('stop.uk.sortable', '[data-uk-sortable]', function(e, el, type){
//type is null here
}
Uikit网站上的文档说应该可用,我还在网上找到了许多示例,这些示例表明它应该可用,但不是。
。https://getuikit.com/v2/docs/sortable.html
有其他方法可以获取被拖动的元素吗?
我正在使用el.drag["0"]
,这给了我div
我正在拖动。