window.location 的几个用法(获取当前页面地址、页面跳转到指定链接、刷新页面)

此为笔记,加深记忆

window.location对象包含当前页面的URL信息,我们可以对location进行操作,得到一些效果

1.    location.herf   返回得到当前页面的地址

console.log(location.href);

2.    给location.herf  赋值新的链接字符串,会直接使页面跳转到该链接

location.href = 'https://www.baidu.com/';

3.    location.reload()    刷新当前页面(重新加载当前页面)

location.reload(true);
注释:如果  reload()  中没有参数,当浏览器的缓存里保存了当前页面时,就会加载缓存的内容,为了避免这种情况发生,在调用  reload()  方法时添加参数 true


下面是代码:

<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title>window.location</title>
	<script src="../jquery.min.js"></script>
</head>
<body>
	<button class="getLocation">获得链接</button>
	<button class="changeLocation">跳转页面</button>
	<button class="reload">重新加载</button>
<script>
	$(function(){

		// location对象:当前加载页面的地址
		$('.getLocation').click(function(){
			console.log(location.href);
		});

		// 页面跳转到指定链接
		$('.changeLocation').click(function(){
			location.href = 'https://www.baidu.com/';
		})

		// 页面重新加载
		$('.reload').click(function(){
			location.reload(true);
		})

	})
</script>
</body>
</html>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值