HTML DOM replace() 方法
JavaScript基础 2022-06-08 12:15:26小码哥的IT人生shichen
HTML DOM replace() 方法
定义和用法
replace() 方法可用一个新文档取代当前文档。
语法
location.replace(newURL)
说明
replace() 方法不会在 History 对象中生成一个新的记录。当使用该方法时,新的 URL 将覆盖 History 对象中的当前记录。
实例
下面的例子将使用 replace() 方法来替换当前文档:
<html>
<head>
<script type="text/javascript">
function replaceDoc()
{
window.location.replace("http://www.phpcodeweb.com")
}
</script>
</head>
<body>
<input type="button" value="Replace document" onclick="replaceDoc()" />
</body>
</html>
TIY
完整实例【使用 location 对象的 replace() 方法】:
<html>
<head>
<script type="text/javascript">
function replaceDoc()
{
window.location.replace("http://www.phpcodeweb.com")
}
</script>
</head>
<body>
<input type="button" value="Replace document" onclick="replaceDoc()" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html