为什么我收到 jQuery “ui.element is undefined”错误?
我有以下内容:
$('#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 库升级到最新版本。
I have the following:
$('#widgets ul').sortable(
{
connectWith: ['#widgets ul'],
opacity: 0.7,
start: function(e, ui) {
fromWidgetPosition = ui.item.prevAll().length + 1;
fromRowId = ui.element.attr('id');
I just upgraded jQuery from 1.2.6 to 1.3.2, and I also upgraded the jQuery UI library to the latest version.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在较新的 jQuery UI 版本中,“元素”已被删除,请参阅此 错误报告 和 相应的源变更集。
根据这些,您应该使用
$(this)
代替:The 'element' got removed in newer jQuery UI versions, see this bug report and the corresponding source changeset.
According to those, you should use
$(this)
instead: