nodebook/20191009/js.history对象.html
2019-10-13 14:54:27 +08:00

31 lines
828 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script type="text/javascript">
//window.history.forward()
//window.history.back()
//window.history.go()
window.onload = function(){
document.getElementById('btn1').onclick = function(){
window.location.href='test.html'
}
// document.getElementById('btn2').onclick = function(){
// window.history.forward()
// }
document.getElementById('btn2').onclick = function(){
window.history.go(1)
}
}
// navigator 对象
console.log(window.navigator)
console.log(navigator.userAgent)//用户浏览器类型
console.log(navigator.platform)//位数
</script>
<input type="button" name="" value="跳转" id="btn1">
<input type="button" name="" value="前进" id="btn2">
</body>
</html>