前言:
当我们用到Javascript的时候跳转页面是必不可少的,今天介绍几种常见的跳转页面方法。
简介 : 跳转到指定的 URL 地址
location.href = "world.html"
效果如下 :
简介 : 同样可以实现页面跳转
location.assign("world.html")
效果如下 :
简介 : 通过当前页面打开一个新页面
window.open("world.html")
当前页面 :
新页面:
简介:替换当前页面
location.replace("world.html")
简介:document.URL 是只读的,用于返回当前文档的 URL 地址。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script type="text/javascript">
function fun1(){
alert(document.URL);
}
</script>
</head>
<body>
<input type="button" value="点我" onclick="fun1()">
</body>
</html>
效果如下:
总结:
看个人需求使用不同的跳转页面方法能达到不一样的效果!