我有以下内容:
$('#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从1.2.6升级到1.3.2,我还将jQuery UI库升级到最新版本。
答案 0 :(得分:4)
在较新的jQuery UI版本中删除了“元素”,请参阅此bug report和corresponding source changeset。
根据这些,您应该使用$(this)
代替:
fromRowId = $(this).attr('id');