Location对象概述:
<script>
/*location:地址栏对象(可以使用windows.location)
属性:
1.window.location.href
*/
//window.alert("跳转了");
//window.location.href = "https://baidu.com//index.php";
//常用方式
document.write("即将跳转到首页....,请稍后");
window.setTimeout( function (){
window.location.href = "https://baidu.com//index.php";
},3000)
</script>
History对象:
<script>
/*history:历史记录(可以使用windows.history引用)
方法:
1.history.back(); 加载history列表中的前一个URL
2.history.forward(); 加载history列表中的下一个URL
*/
history.();
</script>