//1、window对象
//浏览器的框架或窗口;全局对象
alert("Hello everyone");
window.alert("Hello window");
//2、history对象
//跟踪用户访问的每一个页面
history.go(-2);//向后退两个页面;
history.go(3);//向前进三个页面;
//3、location对象
//包含了大量与当前页面相关的有用信息
window.location.replace("myPage.html");//使用replace()方法
window.location.herf="myPage.html";//使用设置herf属性的方法
//4、navigator对
//包含了浏览器和运行浏览器的操作系统的大量信息
//navigator.appName:浏览器名称;
// navigator.appVersion:浏览器版本;
// navigator.language:浏览器设置的语言;
// navigator.platform:操作系统类型;
// navigator.userAgent:浏览器设定的User-Agent字符串;
//5、screen对象
//表示屏幕的信息
//screen.width:屏幕宽度(以像素为单位);
//screen.height:屏幕高度(以像素为单位);
//screen.colorDepth:返回颜色位数;
//6、document对象
//常用对象
document.bgColor = 'red';//设置页面背景色为红色
document.write("this is red color ");//在页面上显示字符串"this is red color "
领取专属 10元无门槛券
私享最新 技术干货