使用 jQuery 拖动锚点:IE 不更新光标
有没有注意到,如果您使用 jQuery 使锚点 () 可拖动,并且设置为显示某个光标,则无论您的选择如何,IE 都会保持指针显示。请参阅下面的示例代码:
$("a, div").draggable({ 助手:“克隆”, 光标:“移动” });
看起来 IE 会保持“鼠标按下”时的光标样式,直到释放按钮为止。所有其他浏览器都遵循光标样式。
有人知道如何在拖动锚点时确保光标样式吗?
Ever noticed that if you make an anchor () draggable using jQuery and you set to have a certain cursor to be displayed, IE keeps the pointer displayed regardless of your selection. See the sample code below:
$("a, div").draggable({
helper: "clone",
cursor: "move"
});
It seems like IE keeps the cursor style as at the time of the 'mousedown', until the button is released. All other browsers honor the cursor style.
Anybody have an idea how to ensure the cursor style while dragging anchors?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试给
一个光标直到鼠标松开?我知道我可能是一个蹩脚的解决方案。但它可以工作...
Try giving
<body>
a cursor untill mouseup? i know i might be a lame solution. But it could work...