我在寫一個Firefox擴展。我想要瀏覽整個明文,所以不要使用Javascript或圖片來源,並替換某些字符串。目前,我有這樣的:搜索某些字符串的HTML文檔的文本(並替換它們)
var text = document.documentElement.innerHTML;
var anyRemaining = true;
do {
var index = text.indexOf("search");
if (index != -1) {
// This does not just replace the string with something else,
// there's complicated processing going on here. I can't use
// string.replace().
} else {
anyRemaining = false;
}
} while (anyRemaining);
這工作,但它也將通過非文本元素和HTML例如Javascript,我只希望它做的可見文本。我怎樣才能做到這一點?
我目前正在考慮檢測一個開放的括號,並繼續在下一個閉括號,但可能有更好的方法來做到這一點。
[JavaScript的替換html正文中的文本](http://stackoverflow.com/a/25699092/215552)似乎在做你想做的事... –
Checkout this [texthighlight function](https://github.com/wet-boew) /wet-boew/blob/master/src/plugins/texthighlight/texthighlight.js)和[演示頁面](https://wet-boew.gith ub.io/v4.0-ci/demos/texthighlight/texthighlight-en.html?txthl=avian%20influenza+world+cook+flu-like%20symptoms+Don%27t%20Forget...+causes%20sickness%20in %20birds,%20it%20can%20also%20infect%20people。) – thekodester
您可以嘗試使用element.textContent獲取文本,而不使用HTML而不使用innerHTML –