admin管理员组文章数量:1344953
I know this question may be asked before but I did not find the correct answer that works.
I tried this code
$('body *').each(function(k,v){$(v).text($(v).text().replace("Hazem","mizzo"))});
but the page crashes, I don't know why.
I'm prefer the code to be in pure javascript not jQuery. Thanks.
I know this question may be asked before but I did not find the correct answer that works.
I tried this code
$('body *').each(function(k,v){$(v).text($(v).text().replace("Hazem","mizzo"))});
but the page crashes, I don't know why.
I'm prefer the code to be in pure javascript not jQuery. Thanks.
Share Improve this question asked Jan 1, 2016 at 19:22 Hazem TahaHazem Taha 1,1846 gold badges19 silver badges31 bronze badges 3- 1 Possible duplicate of javascript replace text in the html body – Manasov Daniel Commented Jan 1, 2016 at 19:29
- 1 @ManasovDaniel: That's a duplicate indeed, but gives a terrible solution. – user1106925 Commented Jan 1, 2016 at 19:32
-
Add a
<span class="name-to-replace">Hazem</span>
to all the instances where you have the string you want to replace. Then, just use something analogous to$(".name-to-replace")
(ordocument.getElementsByClassName("name-to-replace")
as your selector. – adilapapaya Commented Jan 1, 2016 at 19:35
1 Answer
Reset to default 10You should walk the DOM, find text nodes, and replace the found text in each.
Here's a simple example. You can make walkText()
more generic by passing a callback that does the replacement.
function walkText(node) {
if (node.nodeType == 3) {
node.data = node.data.replace(/foo/g, "bar");
}
if (node.nodeType == 1 && node.nodeName != "SCRIPT") {
for (var i = 0; i < node.childNodes.length; i++) {
walkText(node.childNodes[i]);
}
}
}
walkText(document.body);
foo <b>foo</b> foo
本文标签: How to replace all occurrences of a string in a HTML page using JavascriptStack Overflow
版权声明:本文标题:How to replace all occurrences of a string in a HTML page using Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743805595a2542121.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论