jQuery — .not() 不起作用

发布于 2024-10-31 13:56:33 字数 425 浏览 0 评论 0原文

这是我的代码:

$("a").not(".current_page_item").hover(
   function(){
      $(this).stop().animate(
          {color: "#ffffff"}, 'slow'
      );
   },
   function(){
      $(this).stop().animate(
         {color: "#666666"}, 'slow'
      );
   }
);

如果我专门要求 CSS 更改类,例如:

$(".current_page_item").css("color", "#ff00ff");

我可以更改它的颜色,所以我知道这不是我的错。

有什么想法吗?

Here is my code:

$("a").not(".current_page_item").hover(
   function(){
      $(this).stop().animate(
          {color: "#ffffff"}, 'slow'
      );
   },
   function(){
      $(this).stop().animate(
         {color: "#666666"}, 'slow'
      );
   }
);

If I specifically ask the CSS for the class to change for example:

$(".current_page_item").css("color", "#ff00ff");

I can change its colour, so I know it's not a fault on my part.

Any ideas?

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

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

发布评论

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

评论(1

⊕婉儿 2024-11-07 13:56:33

根据演示页面中的标记,您必须执行

$("a").not(".current_page_item > a").hover(...)

以下操作:或者:

var selected = $('.current_page_item > a')[0];
$("a").not(selected).hover(...);

(可能更快)

或只是:

$("li").not(".current_page_item").hover(...)

(如果它也改变了链接的颜色,不确定(链接很特殊;)))

current_page_item 是父 li 的类,而不是链接本身。

您的代码仅过滤具有 current_page_item 类的链接(a 元素),但它们都没有,因此它选择所有链接。

Based on the markup in the demo page, you have to do:

$("a").not(".current_page_item > a").hover(...)

or alternatively:

var selected = $('.current_page_item > a')[0];
$("a").not(selected).hover(...);

(might be faster)

or just:

$("li").not(".current_page_item").hover(...)

(if it also changes the color of the links, not sure about that (links are special ;)))

current_page_item is a class of parent li, not the link itself.

Your code only filters links (a elements) that have a class current_page_item, but none of them has, so it selects all links.

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