1、在页面中载入新页面:location.assgin(""); location.replace();后者会删除以前的页面记录
location.reload();//重新载入当前页面
location="#middle";//滚动到文档的相应位置
2、window的history history.back() history.forward() history.go(-2)///向前或向后
3、浏览器嗅探 Navigator的四个属性:appName="Microsoft Internet Explorer" || "Netscape";
userAgent appVersion platform
4、window的screen对象:
screen.width screen.height //窗口的大小 screen.availwidth//实际可以显示的大小
5、window的对话框
alert() prompt() confirm()
原文地址:http://www.cnblogs.com/dunken/p/3978471.html