1
在我的網站上,有很多頁面和內容。 現在我想在網站加載時替換所有頁面中的一個單詞。我想在網站加載時替換所有頁面中的一個詞
在我的網站上,有很多頁面和內容。 現在我想在網站加載時替換所有頁面中的一個單詞。我想在網站加載時替換所有頁面中的一個詞
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>
請給我一個方法,當網站加載後,功能。謝謝 –
參考[這裏](http://stackoverflow.com/questions/5558613/javascript-replace-text-in-the-html-body) – Aakash