私はこのようなものを持っています。
<div id="firstDiv">
This is some text
<span id="firstSpan">First span text</span>
<span id="secondSpan">Second span text</span>
</div>
「 This is some text 」を削除したいので、html要素をそのままにする必要があります。
私は次のようなものを使用してみました
$("#firstDiv")
.clone() //clone the element
.children() //select all the children
.remove() //remove all the children
.end() //again go back to selected element
.text("");
しかし、うまくいきませんでした。
.text(""))
子タグ内のテキストではなく、タグ内のフリーテキストのようなものを介して、取得する (そしておそらく削除する) 方法はありますか?
どうもありがとう。