js6:history和navigator对象的学习

Posted 杰的记事本——javascript.shop

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js6:history和navigator对象的学习相关的知识,希望对你有一定的参考价值。

原文发布时间为:2008-11-08 —— 来源于本人的百度文章 [由搬家工具导入]

<html>
<head>
<title>js</title>
</head>
<body>
<input type="button" name="goto" Value="Back" onClick="history.back()">
<input type="button" name="goto2" Value="Forward" onClick="history.forward()">
<input type="button" name="goto3" Value="go1" onClick="history.go(1)">
<input type="button" name="goto4" Value="go-1" onClick="history.go(-1)">
<script type="text/javascript">
document.write(history.length+"<br>");
for(var prop in navigator){
document.write(prop+" : "+navigator[prop]+"<br>");
}
</script>
</body>
</html>

















以上是关于js6:history和navigator对象的学习的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript---Bom树的操作,内置方法和内置对象(window对象,location对象,navigator对象,history对象,screen对象)

Location, History, Screen, Navigator对象

JavaScript之DOM-7 Window常用子对象(navigator对象location对象history对象screen对象)

BOM location对象navigator对象history对象

js——navigator,screen,history对象(BOM 3)

BOM的对象总结(location,screen,navigator,history)