我有下面的代碼..jQuery選擇困惑
<span class="under">
texthere
<ul class="list">
<li> list text here</li>
</ul>
</span>
當我運行$(".under").text()
我 「在這裏textherelist文本」 獲得。我試過$(".under :not(.list)").text()
並得到underfined。
我還沒有得到正確的輸出$(".under").not(".list").text()
所以我最後學嘗試爲$(".list").parent().text()
這將導致這裏
textherelist文字我在哪裏有這麼簡單的東西去錯了嗎?
p.s.如果它更簡單,不一定非得是jQuery。
求購結果:texthere
你不是說你想要得到的結果是什麼,只是有什麼不同的選擇的結果。請指定您想要的結果。 –
我猜只是文字,而不是元素。 – Aesthete
很抱歉更新... – LmC