-2

我有这个结构html

<ul class="footer_column">
    <li id="doc-22"><a href="/abc/index.php?id=22" title="wind blades coupling system" ><span>wind blades coupling system</span></a></li>
    <li id="doc-23"><a href="/abc/index.php?id=23" title="expandable bolt" ><span>expandable bolt</span></a></li>
    <li id="doc-24"><a href="/abc/index.php?id=24" title="security screw" ><span>security screw</span></a></li>
    <li id="doc-25"><a href="/abc/index.php?id=25" title="TH preload system " ><span>th</span></a></li>
</ul>

我需要添加类<li id="doc-25"><a><span class="notranslate">th</span></a>

4

3 回答 3

1

它不清楚。我假设您想将类添加到span. 因此您可以使用.find()

$('li #doc-25').find('span').addClass('notranslate');
于 2013-10-07T15:28:40.377 回答
1

添加这个并尝试如果它id是静态的并且将保持不变......

 $( "#doc-25" ).addClass( "myClass yourClass" ); 
于 2013-10-07T15:28:40.443 回答
1

尝试

$('#doc-25').find('span').addClass('notranslate');

或者

$('#doc-25 span').addClass('notranslate');

或者

$("#doc-25").children('a').children('span').addClass( "class_to_add" );

或者

$("#doc-25 > a > span" ).addClass( "class_to_add" );

参考

。寻找()

.addClass()

。孩子们()

于 2013-10-07T15:29:13.217 回答