5

我有以下内容:

$('#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 库升级到了最新版本。

4

1 回答 1

4

在较新的 jQuery UI 版本中删除了“元素”,请参阅此错误报告相应的源变更集

根据这些,您应该$(this)改用:

fromRowId = $(this).attr('id');
于 2009-10-01T18:57:22.187 回答