标签:window www. obj 对象模型 tool func fun 地址 cti
内置对象String
Date
Math
Array
RegExp
Number
Object
Function
Null
Boolean
Error
Cookie
Session
Window
Document
History
Location
Screen
Navigator
浏览器对象模型
BOM是浏览器对象模型的简称
Browser Object Model
例子:
document.getElementById(‘btn2‘).onclick=function() {
window.open (‘http://www.baidu.com‘,‘newwindow‘,‘height=500,width=500,top=100,left=100,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no‘)
}
// 我们可以控制窗口的各种属性:
// 宽为100,高为400,距屏顶0象素,屏左0象素,无工具条,无菜单条,无滚动条,
// 不可调整大小,无地址栏,无状态
标签:window www. obj 对象模型 tool func fun 地址 cti
原文地址:http://blog.51cto.com/13534905/2058755