ITPUB老博客搬迁至此
当浏览器新tag一打开,就建立 BOM:
Bom对象模型:
我们开发中必须知道的几个BOM对象的属性:
window常用的属性:window.alert(); prompt(); setTimeOut(), setInterval(), clearTimeOut(); clearInterval()……..
window.navigator浏览器信息对象,存储着浏览器的各种信息,常用的属性:appCodeName,online (判断浏览器是否处于脱机状态,即有没有联网),cookieEnabled (用于判断是否支持/禁止cookie)…….
window.location 地址栏对象,常用属性:protocol , host , port , pathname , search ,href ……
window.screen 屏幕信息对象 , 常用属性:availHeight (除了菜单栏外的可用高度),availWidth(除了菜单栏外的可用宽度),colorDepth (颜色质量:32位/16位),height(实际高度),width (实际宽度)
window.document 文档对象 , 常用属性:linkColor(超链接的颜色),alinkColor(作用中的超链接的颜色),vlinkColor(作用过后的超链接的颜色), getElementsByName(“luo_div”) 返回一个集合,getElementsByTagName(“div”)返回一个集合,getElementsByClassName(“样式名字”)返回一个集合