我想在网站加载时从所有页面替换一个单词

时间:2016-08-17 11:14:49

标签: javascript replace web words loaded

在我的网站上,有很多页面和内容。 现在我想在加载网站时从所有页面替换一个单词。

1 个答案:

答案 0 :(得分:0)

timer = setInterval(myFunction,100);
function myFunction() {
    var str = document.getElementById("demo").innerHTML; 
    var res = str.replace("hello", "hi");
    document.getElementById("demo").innerHTML = res;
}
<p>Click the button to replace "hello" with "hello" in the paragraph below:</p>

<p id="demo">Visit hello!</p>