JavaScript中的replace()方法用于将当前页替换为另一页,重定向页面。将指定的URL作为参数传递给replace方法,即可使用该指定URL替换当前窗口的URL。 原文地址:JavaScript的replace()方法有什么用?

语法:

`location.replace(URL)`

参数:此方法接受单个参数URL。URL是需要替换旧页面的其他页面的引用。

说明:replace() 方法不会在 History 对象中生成一个新的记录。当使用该方法时,新的 URL 将覆盖 History 对象中的当前记录。

示例:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
	</head>
	<body>
		<h2>Replace方法</h2>
		<button onclick="Replace()">重定向</button>
		<script>
			//Replace function that replace the current page. 
			function Replace() {
				location.replace("https://www.html.cn/")
			}
		</script>
	</body>

</html>

效果图:

相关推荐:

angularjs教程

golang教程

redis入门教程