1. URL:
2.location对象的属性
格式:
location.href = "detail.html"
3.location对象的方法
实例:
<button>点击</button>
<script>
var btn = document.querySelector('button');
btn.addEventListener('click', function() {
//记录浏览历史,所以可以实现后退功能
// location.assign('http://www.baidu.com');
//不记录浏览历史,不可以实现后退功能
// location.replace('http://www.baidu.com');
location.reload(true);
})
</script>