Home  >  Article  >  Web Front-end  >  JavaScript method to replace the current page_javascript tips

JavaScript method to replace the current page_javascript tips

WBOY
WBOYOriginal
2016-05-16 16:05:532314browse

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.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn