當我做 $('ul.latestnews ul li').parent().prev().text());
我找回了目標li的內容。 (在這個例子中是word1或word2)。向孩子添加班級
但是當我做
$('ul.latestnews ul li').addClass($(this).parent().prev().text());
它不添加類。當我在最後一個語句上做一個console.log時,它只是返回所有我想要添加類的li。
我所試圖做的是這樣的:
<ul class="latestnews">
<li>word1</li>
<ul>
<li>my class should become word1</li>
<li>my class should become word1</li>
</ul>
<li>word2</li>
<ul>
<li>my class must become word2</li>
</ul>
</ul>
哪兒我去錯了嗎?
什麼是'this' ..? –
@Rob。窗口,我猜... – gdoron
是不是HTML無效? –