[JavaScript基础]学习⑧---window/计时器/Location/Navigator

window对象

[JavaScript基础]学习⑧---window/计时器/Location/Navigator_第1张图片
Paste_Image.png
 var mymessage=window.confirm("欢迎来到慕课网");
 if(mymessage){
        window.open('http://www.imooc.com','_blank','width=600,height=400');
}

JavaScript 计时器

[JavaScript基础]学习⑧---window/计时器/Location/Navigator_第2张图片
Paste_Image.png

setInterval()

从载入页面后每隔指定的时间执行代码

setInterval("clock()",1000)
或
setInterval(clock,1000)
var int=setInterval(clock, 100)
  function clock(){
    var time=new Date();
    document.getElementById("clock").value = time;
  }
 var attime;
  function clock(){
    var time=new Date();          
    attime=  time.getHours()+":"+time.getMinutes()+":"+time.getSeconds();
    document.getElementById("clock").value = attime;
  }
  
  setInterval(clock,100);

clearInterval()

var i=setInterval("clock()",100);
  

setTimeout()

var num=0;
function startCount() {
   document.getElementById('count').value=num;
   num=num+1;
   setTimeout("startCount()",1000);
   document.getElementById('count').value=num;
}
  

clearTimeout()

i=setTimeout("startCount()",1000);
clearTimeout(i);

History 对象

History 对象属性

Paste_Image.png

History 对象方法

[JavaScript基础]学习⑧---window/计时器/Location/Navigator_第3张图片
Paste_Image.png
var HL = window.history.length;
document.write(HL);

window.history.back()

window.history.back();

==

window.history.go(-1);

forward()

返回下一个浏览的页面

window.history.forward();

==

window.history.go(1);

window.history.go(number);

[JavaScript基础]学习⑧---window/计时器/Location/Navigator_第4张图片
Paste_Image.png
window.history.go(-2);
window.history.go(3);

Location对象

location用于获取或设置窗体的URL,并且可以用于解析URL。

[JavaScript基础]学习⑧---window/计时器/Location/Navigator_第5张图片
Paste_Image.png
[JavaScript基础]学习⑧---window/计时器/Location/Navigator_第6张图片
Paste_Image.png

Navigator对象

Navigator 对象包含有关浏览器的信息,通常用于检测浏览器与操作系统的版本。

[JavaScript基础]学习⑧---window/计时器/Location/Navigator_第7张图片
Paste_Image.png
var browser=navigator.appName;
var b_version=navigator.appVersion;
document.write("Browser name"+browser);
document.write("
"); document.write("Browser version"+b_version);
Browser nameNetscape
Browser version5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36

navigator.userAgent

返回用户代理头的字符串表示(就是包括浏览器版本信息等的字符串)

[JavaScript基础]学习⑧---window/计时器/Location/Navigator_第8张图片
Paste_Image.png

判断使用的是什么浏览器





navigator



  
浏览器:Chrome
u_agent:Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36

window.screen.属性

[JavaScript基础]学习⑧---window/计时器/Location/Navigator_第9张图片
Paste_Image.png

screen.width

屏幕分辨率的高和宽

document.write( "屏幕宽度:"+screen.width);//1920
document.write( "屏幕高度:"+screen.height);//1080   

screen.availWidth

屏幕可用高和宽度
creen.availWidth 属性返回访问者屏幕的宽度,以像素计,减去界面特性,比如任务栏。

document.write("可用宽度:" +screen.availWidth);//1920
document.write("可用高度:" +screen.availHeight);//1080

你可能感兴趣的:([JavaScript基础]学习⑧---window/计时器/Location/Navigator)