只能拖动可拖动元素一次
我正在开发一个小型应用程序,将元素拖动到可放置区域。我最近升级到 jQuery 1.5,我发现我只能拖动一个元素一次。
这意味着,如果用户不小心将其放置在可放置元素以外的其他位置,他将无法再次拖动它。
我正在使用 jQuery 1.5 和 jQuery UI 1.8.9。
我通过 .each 函数为每个元素设置可拖动状态。
还有其他人遇到过这个问题吗?我是 jQuery 新手,我很感谢任何帮助:)
$(itemId).draggable({
zIndex: 2700,
helper: "clone",
scroll: false,
drag: function(event, ui)
{
$("#container").css("background-color", "#fff");
},
stop: function(event, ui)
{
$("#conatiner").css("background-color", "#F0EBE0");
}
});
[编辑] 我还应该添加一点,我已使用委托函数将单击事件委托给同一对象。虽然之前这不是问题。
I'm working on a small app where I drag element to a droppable area. I recently upgraded to jQuery 1.5 and I discovered that I can only drag an element once.
That means that if the user accidently drops it somewhere else other than the droppable element, he will not be able to drag it again.
I am using jQuery 1.5 and jQuery UI 1.8.9.
I set the draggable state to each element via a .each function.
Has anybody else had this problem? I'm a jQuery novice, and I am thankful for any help :)
$(itemId).draggable({
zIndex: 2700,
helper: "clone",
scroll: false,
drag: function(event, ui)
{
$("#container").css("background-color", "#fff");
},
stop: function(event, ui)
{
$("#conatiner").css("background-color", "#F0EBE0");
}
});
[EDIT] I should also add that I have delegated a click event to the same object with the delegate function. Although it wasn't a problem before.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 jQuery 1.5 引入的错误,它将在 jQuery 1.5.1 中修复:
http://bugs.jqueryui.com/ticket/6922
您需要恢复到jQuery 1.4.4 直到 1.5.1 发布。
This is a bug introduced with jQuery 1.5, and it will be fixed in jQuery 1.5.1:
http://bugs.jqueryui.com/ticket/6922
You'll need to revert back to jQuery 1.4.4 until 1.5.1 is released.