标签:
window 对象:
一、名词解释:
BOM:BOM是计算机可以识别的产品结构数据文件。
二、Document(引用)
1、Document. getElementById() (引用ID)
2、Open (用于打开一个新的浏览器窗口或查找一个已命名的窗口。)
Window.open(URL,name,features,replace){URL == 新窗口中显示内容的地址
NAME == 用于声明新窗口的名字
Features== 新窗口的特征 (“width 100px height 100px”)
Replace == 浏览历史中新建或替换条目 (包含true == 替换历史条目、False == 新建历史条目)
}
3、Moveto(x,y) 移动到指定坐标(只对IE有用)
相对于左上角的坐标点!
4、Moveby(x,y) 移动到指定的像素(只对IE有用)
X = 窗口右移的像素
Y = 窗口下移的像素
5、ResizeBy = 按指定的像素来调整窗口的大小
Resizeby(width, height)
6、Resizeto = 指定窗口的宽和高
Resizeto(width, height)
7、setTimeout(code,millisec) 指定毫秒数后执行函数或计算表达式
code == 要调用的函数名
millisec == 毫秒数
// 该方法只执行一次,如需循环,可重复调用该函数
8、clearTimeout() 清除延迟效果;
该值为setTimeout的返回ID值
9、setInterval() 指定毫秒数后执行函数或计算表达式
该用法同setTimeout 相同,
// 不同之处,此方法可自动循环
10、clearInterval()清除延迟
// 同clearTimeout效果:
11、History.go(-1) 参数是返回的页面数
// 正数为前进,负数为后退
12、History.back() 后退
13、History.forward() 前进
14、History.length 返回历史页面的个数
三、Document 对象:
1、Write 可向文档写出HTML OR JAVAScript;
Document.write();
2、URL 返回当前文档的URL
Document.URL
3、Title 返回当前文档的标题
Document.Title
4、Referrer 返回载入当前文档的文档的 URL
Document.Referrer
5、lastModify: 页面的最后修改日期
document.lastModify
6、anchors 页面中的所有锚点
document.anchors
7、images : 图片集合
document.images[1]
document.images[images name]
8、links : 超级链接
document.links
四、Location对象:
1、Host:URL中主机名称
Location.host
2、Pathname: URL 中主机名后的部分
Location.pathname
3、Prot : 端口
Location.prot
4、Protocol 协议
Location.protocol
5、Search:URL中问号后面的部分
Location.search
跳转到页面
Location. Herf = "a.html"
Location.assign = ("a.html")
Location.replace( "a.html") 该方法没有历史信息
刷新页面
Location.reload(boolean);
True:是从服务器刷新
False:是从本地刷新
五、Screen对象
跟屏幕相关:
availlHeight:窗口的高度
availlWidth:窗口的宽度
colorDepth:颜色的位数
height: 屏幕的高度
width: 屏幕的宽度
标签:
原文地址:http://www.cnblogs.com/wangjie-01/p/4649248.html