我有一個動態的HTML結構。所以,我想並選擇其中的div.test
後面的所有內容:如何選擇特定元素頂部的所有兒童?
<div>
/* I want to select everythis is here */
<span class = "test">
</div>
例1:
<div>
hello
<span class = "test">
</div>
我想這樣的輸出:hello
例題:
<div>
this is a <a href="www.example.com">test</a>
<span class = "test">
</div>
我想這樣的輸出:this is a <a href="www.example.com">test</a>
而且,這裏是我的真實結構的圖像:
'jQuery(「span.test」).remove()'? – Kenney
「test」類總是在那裏嗎?這會讓它簡單得多。 –
這個「'div.test'」在哪裏? – k97513