Home > Article > Web Front-end > JavaScript method to replace the current page_javascript tips
The example in this article describes how to replace the current page with JavaScript. Share it with everyone for your reference. The details are as follows:
The following JS code can replace the current page with the specified URL
<!DOCTYPE html> <html> <head> <script> function replaceDoc() { window.location.replace("http://www.jb51.net") } </script> </head> <body> <input type="button" value="Replace document" onclick="replaceDoc()"> </body> </html>
I hope this article will be helpful to everyone’s JavaScript programming design.