一個HTML元素我有一個像查找基於文本內容
<div>
<span>TV</span>
</div>
一個HTML代碼,我想通過documentObject找到這個span
有文字「TV」,像getElementById
等等......像getElementByText
。我知道可以通過XPath/JQuery/Regex。
但我需要它僅通過DOM對象模型。因爲在我的上下文中只有DOM模型可用。 我看到幾個答案:
- Finding an html element ID based on a text displayed
- jquery - find element that only has text and not any other html tag
- how to find element after some text with javascript?
但這些都不是對我很有幫助,因爲我需要只通過DOM模型得到它。