gpt4 book ai didi

jquery - Prototype js中有 "not equal to"选择器吗?

转载 作者:行者123 更新时间:2023-12-01 06:24:40 25 4
gpt4 key购买 nike

我在 Jquery 中有这个函数,它基本上是说,当您单击 ID“MyID”时,会对所有类不等于“nav”的 li 标记进行淡入淡出操作:

$("#MyID").click(function () {
$('li[class!="nav"]').fadeToggle("fast", "linear");
});

有没有办法在 Prototype js 中做到这一点?具体来说,有没有一种方法可以使用选择器来选择类!=(不等于)某物?

最佳答案

试试这个,

     $("MyID").click(function () {
$$('li :not(.nav)').fadeToggle("fast", "linear");
});

希望这有帮助...

关于jquery - Prototype js中有 "not equal to"选择器吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6632779/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com