如何找到
  • 内然后将类添加到
  • ;

发布于 2024-10-11 00:47:33 字数 544 浏览 0 评论 0原文

<ul>
<li>nav</li>
<li>nav</li>
<li>nav</li>
<li class="how do i addClass here">nav "how to addClass with in this li"
 <ul>
     <li>nav</li>
     <li>nav</li>
     <li class="how do i addClass here">nav "how to addClass with in this li"
          <ul>
             <li>nav</li>
             <li>nav</li>
             <li>nav</li>
         </ul>
     </ul>
 </li>
 </ul>
<ul>
<li>nav</li>
<li>nav</li>
<li>nav</li>
<li class="how do i addClass here">nav "how to addClass with in this li"
 <ul>
     <li>nav</li>
     <li>nav</li>
     <li class="how do i addClass here">nav "how to addClass with in this li"
          <ul>
             <li>nav</li>
             <li>nav</li>
             <li>nav</li>
         </ul>
     </ul>
 </li>
 </ul>

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

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

发布评论

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

评论(3

寄居者 2024-10-18 00:47:33
$('ul').parent('li').addClass('someclass');

选择所有

这使用了有效的 CSS 选择器,这对于支持 querySelectorAll 的浏览器的性能来说是一件好事。

不支持它的浏览器也应该执行得很快,因为 jQuery 可能会执行 getElementsByTagName 操作。

$('ul').parent('li').addClass('someclass');

Select all the <ul> elements, then do .parent('li'). This will only select the immediate parent element if it is a <li> element. Then use .addClass() to add the class.

This uses a valid CSS selector, which is a good thing for performance in browsers that support querySelectorAll.

Browsers that don't support it should perform fast as well, since jQuery likely does a getElementsByTagName.

爱人如己 2024-10-18 00:47:33

试试这个:

$("li:has(ul)").each(function(){
   $(this).addClass("<YOUR_CLASS_NAME>")
 }
)

Try this:

$("li:has(ul)").each(function(){
   $(this).addClass("<YOUR_CLASS_NAME>")
 }
)
记忆里有你的影子 2024-10-18 00:47:33
$('body ul:nth-child(1) li:nth-child(4)').addClass('test').find('ul li:nth-child(3)').addClass('test2');

现场演示:http://jsfiddle.net/ps8AA/

$('body ul:nth-child(1) li:nth-child(4)').addClass('test').find('ul li:nth-child(3)').addClass('test2');

live demo: http://jsfiddle.net/ps8AA/

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