history对象 screen对象

Posted 加号与剑豪

tags:

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

history对象

             

                     length     历史记录个数

                    

                     go() 参数:1前进一步 2 前进二步  -1退后一步 -2退后二步

                     back()     无参数 退后一步

                     forward()              无参数  前进一步

<script>
function qj(){
var x=window.history.go(1);

}

function ht(){
var x=window.history.forward();

}
</script>


<body>
<a href="https://hao.360.cn/?wd_xp1">ddd</a>
<a href="https://www.baidu.com/">xxx</a>
<button onclick="qj()">前进</button>
<button onclick="ht()">后退</button>




</body>

 

 

 

screen对象

window.screen.属性

属性:height    屏幕的高度

        width              宽

        availHeight    可使用的屏幕高度

        availWidth                     宽

        colorDepth   浏览器表示的颜色   32位每像素的位数

<script>
var g=window.screen.availHeight;
var k=window.screen.availWidth;
var g1=window.screen.height;
var k1=window.screen.width;
var x=window.screen.colorDepth;

document.write("屏幕可用高:"+g+"<br />"+"屏幕可用宽:"+k+"<br />"+"屏幕现高:"+g1+"<br />"+"屏幕现宽:"+k1+"<br />"+"屏幕颜色:"+x)
</script>


<body>



</body>

 

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

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

Location, History, Screen, Navigator对象

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

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

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

JavaScript之BOM五大对象(window;location;navigator;screen;history)