本文實例講述了JavaScript使用replace函數替換字串的方法。分享給大家供大家參考。具體如下:
JavaScript透過replace函數取代字串,下面的程式碼將Visit Microsoft中的MicroSoft替換成jb51.net
<!DOCTYPE html> <html> <body> <p> Click the button to replace "Microsoft" with "jb51.net" in the paragraph below: </p> <p id="demo">Visit Microsoft!</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var str=document.getElementById("demo").innerHTML; var n=str.replace("Microsoft","jb51.net"); document.getElementById("demo").innerHTML=n; } </script> </body> </html>
希望本文所述對大家的javascript程式設計有所幫助。