jQuery UI 可排序和:用于句柄的活动鼠标光标
我正在尝试使用 Sortable 对列表中的项目重新排序。我为列表中的每个项目都有一个句柄,其中包含 :hover
和 :active
css 光标设置,以便当用户将鼠标悬停在句柄上时光标会发生变化(拖动时再次)。
<html>
<head>
<style>
span { width: 20px; background: red }
span:hover { cursor: -moz-grab; }
span:active { cursor: -moz-grabbing; }
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<script>
$(function(){
$('#sortable').sortable({ handle: 'span' });
$('#sortable span').disableSelection();
});
</script>
</head>
<body>
<ul id="sortable">
<li><span>grab 0 here</span> I'm 0!</li>
<li><span>grab 1 here</span> I'm 1!</li>
<li><span>grab 2 here</span> I'm 2!</li>
<li><span>grab 3 here</span> I'm 3!</li>
<li><span>grab 4 here</span> I'm 4!</li>
<li><span>grab 5 here</span> I'm 5!</li>
<li><span>grab 6 here</span> I'm 6!</li>
<li><span>grab 7 here</span> I'm 7!</li>
</ul>
</body>
</html>
问题是 :active
光标停止工作。我不知道为什么,当我不使用 sortable
时它会起作用,但是之后,当我在 firebug 中弹出它时,我可以看到 :hover
光标正在应用,但没有切换到 :active
。
(为简单起见,我在上面的示例中使用了 -moz-grab
和 -moz-grabbing
,它们不适用于所有浏览器)。
有什么想法可能会出问题吗?
I'm trying to use Sortable to reorder the items of a list. I've got a handle for each item of the list, which has :hover
and :active
css cursor settings, so that the cursor changes when the user mouses over the handles (and again when dragging).
<html>
<head>
<style>
span { width: 20px; background: red }
span:hover { cursor: -moz-grab; }
span:active { cursor: -moz-grabbing; }
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<script>
$(function(){
$('#sortable').sortable({ handle: 'span' });
$('#sortable span').disableSelection();
});
</script>
</head>
<body>
<ul id="sortable">
<li><span>grab 0 here</span> I'm 0!</li>
<li><span>grab 1 here</span> I'm 1!</li>
<li><span>grab 2 here</span> I'm 2!</li>
<li><span>grab 3 here</span> I'm 3!</li>
<li><span>grab 4 here</span> I'm 4!</li>
<li><span>grab 5 here</span> I'm 5!</li>
<li><span>grab 6 here</span> I'm 6!</li>
<li><span>grab 7 here</span> I'm 7!</li>
</ul>
</body>
</html>
The problem is that the :active
cursor stops working. I'm not sure why, it works when I don't use sortable
, but afterwards, when I pop it up in firebug, I can see that the :hover
cursor is being applied, but no shift to :active
.
(for simplicity, I'm using -moz-grab
and -moz-grabbing
in my above example, which don't work in all browsers).
Any ideas what might be going wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
答案有点晚了,但您可以使用
jQuery UI sortable
选项光标
这样你就可以避免额外的jquery和css。
A bit late answer but you can use the
jQuery UI sortable
option cursor
So you can avoid extra jquery and css.
使用新的 .on/.off jQuery 函数无需单独的处理程序
No need for seperate handlers with the new .on/.off jQuery functions
好吧,我想出了一个办法来解决我的问题。这是很黑客的,所以如果有人有更好的东西,请告诉我。
基本上,我放弃了
:active
,转而使用在mousedown
上添加并在mouseup
上删除的自定义类。Ok, I came up with a hack to solve my problem. It's hackish, so if anyone's got something better, let me know.
Basically, I ditched the
:active
in favor of a custom class that is added onmousedown
and removed onmouseup
.如果您使用 jquery ui,最简单的方法是使用 css 类:
If you are using jquery ui, the easiest way is to use css classes: