jQuery .css() 后备?
使用 .css() 进行回退的正确方法是什么?这最常用于字体后备,但我将其用于光标图像。
这是我得到的不起作用的内容:
$("#dragable").css('cursor','url(images/grabbing.gif), -moz-grabbing, auto');
**更新:有人可以告诉我初学者的有效 CSS 吗?
我所拥有的:
cursor: url(images/grabbing.gif), -moz-grabbing, auto;
...不起作用。**
What is the proper way to do fallbacks with .css()? This would most commonly be used for font fallbacks but I am using it for cursor images.
Here's what I got that isn't working:
$("#dragable").css('cursor','url(images/grabbing.gif), -moz-grabbing, auto');
**UPDATE: can someone tell me the valid CSS for starters?
What I have:
cursor: url(images/grabbing.gif), -moz-grabbing, auto;
... doesn't work.**
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用动态内联样式并不总是一个好主意。考虑动态类。在 css 中的某处定义可拖动元素的特定类:
并尝试添加此类,而不是样式本身;
Using dynamic inline styles not always a good idea. Consider dynamic classes. Define somewhere in css specific class for draggable element:
And try to add this class, instead of style itself;
不知道为什么会破坏它,但这些值没有被写入 DOM。
不过, css() 函数实际上只是编辑元素上内联“style”属性的快捷方式,因此您可以这样做以获得相同的结果:
Not sure why that breaks it, but the values aren't being written to the DOM.
Though, the css() function is really just a shortcut to editing the "style" attribute inline on the element, so you could do this to get the same result: