我有包含HTML元素的文本。例如像這樣Javascript從文本中獲取元素
<div>
<div>content</div>
<div>
<div id="myId">
<p>
<span>content</span>
<span>content</span>
</p>
</div>
</id>
</div>
我希望得到一些元素的innerHTML
使用類似這樣的例子
// HTML variable contain above HTML text
var innerHTML = HTML.getElementById('myId').innerHTML;
JavaScript是有可能這樣的文字?或者像這樣的其他方式?
http://www.sitemaps.org/protocol.html - 在最後一章中,有一個架構驗證您的Sitemaps – michi
的[創建從一個新的DOM元素可能的複製HTML字符串使用內置的DOM方法或原型](http://stackoverflow.com/questions/494143/creating-a-new-dom-element-from-an-html-string-using-built-in-dom-方法或親) – isherwood
請告訴我們更多關於你在做什麼 - 你是在瀏覽器中執行此操作還是使用node.js? –