36 lines
1009 B
HTML
36 lines
1009 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'
|
|
window.location.href='test1.html'
|
|
}
|
|
// document.getElementById('btn2').onclick = function(){
|
|
// window.history.forward()
|
|
// }
|
|
document.getElementById('btn2').onclick = function(){
|
|
window.history.go(1)
|
|
}
|
|
document.getElementById('btn4').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">
|
|
<input type="button" name="" value="快进" id="btn4">
|
|
</body>
|
|
</html> |