浏览器对象模型
window
- document 窗口或标签
- history 当前网页浏览过的网页
- location 当前页url
- navigator 浏览器的信息
- screen 设备显示信息
例子: window.screen.width将输出设备的像素宽度
window
window.innerHeight
window.innerWidth 窗口宽度
window.pageXOffset 文档滚动的水平距离
window.pageYOffset 文档滚动的垂直距离
window.screenX 相对于屏幕左上角,鼠标点的x坐标
window.location
window.document
window.history
window.history.length
window.screen
window.screen.width
window.screen.height
window.alert()
window.open()
document
document.title
document.lastModified
document.URL
document.domain 返回当前文档的域
document.write()
document.getElementById()
document.querySelectorAll() 返回一组元素,这些元素都符合参数中定义的css选择器
document.createElement()
document.createTextNode()
文档对象模型(DOM)
document.getElementById(‘one’);
document.lastModifier;
String 用于处理字符串
Number 用于处理数字 isNaN()检查值是否为数字
Boolean 用于处理布尔值
Date 用于处理日期
Math 处理数字和计算
RegEx 正则表达式,用于匹配文本的字符串模式
块的隐藏和显示
style.display="block"或style.visibility="visible"时控件或见;
style.display="none"或style.visibility="hidden"时控件不可见。