如何使用 JQuery 更改光标的样式?

发布于 2024-11-05 17:03:12 字数 33 浏览 1 评论 0原文

我想更改光标的样式,就像它经过链接一样。我该怎么做?

I want to change the style of the cursor as if it were going over a link. How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

陌上青苔 2024-11-12 17:03:12

使用 css() 方法修改 CSS cursor

$('#selector').css('cursor', 'pointer');

演示:http://jsfiddle.net/jomanlk/H6Nta/

Modify the CSS cursor value by using the css() method

$('#selector').css('cursor', 'pointer');

Demo : http://jsfiddle.net/jomanlk/H6Nta/

长途伴 2024-11-12 17:03:12

你可以用这个

$('#divid').css('cursor','default');

指针

$('#divid').css('cursor','pointer');

api

http://api.jquery.com/css/

you can play around with this

$('#divid').css('cursor','default');

for pointer

$('#divid').css('cursor','pointer');

api

http://api.jquery.com/css/

为你鎻心 2024-11-12 17:03:12

使用 css

http://www.echoecho.com/csscursors.htm

阅读此处了解不同的光标样式

并应用它

$('#selector').css('cursor', 'value');

using css

http://www.echoecho.com/csscursors.htm

read here for different cursor styles

and apply it

$('#selector').css('cursor', 'value');
ぇ气 2024-11-12 17:03:12

游标由 CSS 处理。您需要类似

$('#elementid').css('cursor', 'pointer');

或 的旧版 IE 浏览器

$('#elementid').css('cursor', 'hand');

Cursors are handled by CSS. You need something like

$('#elementid').css('cursor', 'pointer');

or for old IE browsers

$('#elementid').css('cursor', 'hand');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文