我發現How do I select text nodes with jQuery?但我的問題是,雖然我可以去喜歡使用jquery查找文本節點?
$(elem)
.contents()
.filter(function() {
return this.nodeType == Node.TEXT_NODE;
}).each(function() {
this.nodeValue = //stuff
});
我試圖找出我怎麼能與before
和after
節點結合this.nodeType
因爲有些東西我需要可以表現爲this.nodeValue + before
,this.nodeValue
或this.nodeValue + after
的組合是否合理,我需要測試每個節點的值以及它與前一個和下一個的結合嗎?
發佈一個示例標記代碼,瞭解您如何擁有它以及期望的結果,解釋您正在嘗試執行的操作。 –