Jquery菜单和光标问题

发布于 2024-12-01 13:18:20 字数 428 浏览 0 评论 0 原文

我一直在尝试更改在 HTMLDrive JQuery 菜单

我已经尝试过 css 和 jquery,对于我使用的 JQuery...

$("body").hover(function() { 
$(this).css({ 'cursor' : 'default'});});

这只是一个示例想法,我一直在测试所有 html,如导航、菜单、 li 和 ul 风格

那么有人可以帮助我并告诉我发生了什么吗?

顺便说一句,我可以在除导航菜单之外的所有其他 HTML 中编辑光标。

I've been trying to change the .hover cursor on this nav menu that I found in HTMLDrive JQuery Menu

I've tried through css and jquery, for JQuery I used...

$("body").hover(function() { 
$(this).css({ 'cursor' : 'default'});});

This is just an example thought, I've been testing over all the html like nav, menu, li and ul styles

So anyone could help me and tell me what's hapenning?

By the way I'm able to edit the cursor in all the other HTML except for navigation menu.

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

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

发布评论

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

评论(3

南冥有猫 2024-12-08 13:18:20

CSS...

#topnav a {
    cursor: default;
}

CSS...

#topnav a {
    cursor: default;
}
掐死时间 2024-12-08 13:18:20

你应该在 css 中设置它。

如果您以链接为例,您可以这样做,

#topnav li a:hover{cursor:default;}

除非必须,否则您不想使用javascript。查看这个 Fiddle 链接 的示例..注意 css 面板中的最后一行

you should set that in the css.

if you take the link as an example you could do

#topnav li a:hover{cursor:default;}

You don't want to use javascript unless you have to. Check out this Fiddle link for an example..notice the last line in the css panel

翻身的咸鱼 2024-12-08 13:18:20

试试这个:
javascript:

$("#topnav a").hover(function() { 
$(this).css({ 'cursor' : 'default !important'});});

}

css:

#topnav a:hover{
   cursor:default !important;
}

trie this:
javascript:

$("#topnav a").hover(function() { 
$(this).css({ 'cursor' : 'default !important'});});

}

css:

#topnav a:hover{
   cursor:default !important;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文