码迷,mamicode.com
首页 > 其他好文 > 详细

BOM的history对象

时间:2020-01-31 00:56:09      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:history   rip   http   pre   org   script   NPU   w3c   alert   

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>history对象</title>
</head>
<body>
<input type="button" value="front" onclick="f1()">
<a href="history_obj1.html">555</a>
<script>
//history内部有三个方法:forward,back,go 一个属性 length
function f1() {
// history.forward();
history.go(1);//history.go(0)代表当前页面
}


</script>

</body>
</html>
======================================================================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Title</title>
</head>
<body>
<input type="button" value="back" onclick="f2()">
<script>
function f2() {
// history.back();
history.go(-1);
alert(history.length);// 2 返回历史URL个数

}


</script>

</body>
</html>

BOM的history对象

标签:history   rip   http   pre   org   script   NPU   w3c   alert   

原文地址:https://www.cnblogs.com/startl/p/12244267.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!