0
我有這樣的代碼:如何刪除兩個標籤之間的文本?
<input type="text">some dummy text i need to remove! <select>F.i.</select>
我試圖使用jQuery這一點。但它似乎並不奏效。
$('div').children('select').prev().remove();
它刪除input
而不是該文本。
那麼,如何刪除標籤之間簡單的文本呢?
」我需要刪除一些虛擬文本!「是父div下的文本節點。 [This](http://stackoverflow.com/questions/298750/how-do-i-select-text-nodes-with-jquery)可能會幫助你。 – Sumurai8