我有以下内容:
$('#widgets ul').sortable(
{
connectWith: ['#widgets ul'],opacity: 0.7,start: function(e,ui) {
fromWidgetPosition = ui.item.prevAll().length + 1;
fromRowId = ui.element.attr('id');
最佳答案
在较新的jQuery UI版本中删除了’element’,请参阅此bug report和corresponding source changeset.
原文链接:https://www.f2er.com/jquery/427836.html根据这些,你应该使用$(this)代替:
fromRowId = $(this).attr('id');