-1
如果li
元素中的文本爲「OFF」,我想更改li
元素的顏色。jQuery更改ul節點的css
HTML結構:
-> OL
-> UL
-> UL
-> LI - if LI text is "OFF" its color should be red.
-> UL
-> UL
-> LI
我做了這樣的事情,但不工作:
$("#content").children().each(function() {
$(this).children().each(function() {
if (this.text == "OFF")
$(this).css({ 'color': 'red' });
})
})
你是什麼意思是關閉?你能提供你的HTML嗎? – Aaron
@Aaron如果文本內容是「關」。 –