只要document才有document接口
属性
//anchors 【已不用了】
document.anchors
//猎取页面中一切锚点元素 因为兼容缘由 该属性纸返回那些具有name属性的a元素 而不是具有id属性的a元素
//body
document.body //猎取body元素
//characterSet 字符
document.characterSet // UTF-8 猎取字符编码
//childElementCount
document.childElementCount //只读属性 返回无标记长整型数字 示意给指定元素的子元素个数
//children
document.children // html document是html的父级 (html是泉源素)
//doctype
//documentElement
//返回文档对象(document)的根元素的只读属性(如HTML文档的<html>元素)
//domain
document.domain //猎取域名
//head 猎取head元素
//hidden 猎取该元素是不是被隐蔽 false是没有隐蔽
//images 猎取页面中一切的img标签
//links 猎取页面中一切的a标签
//location
document.location // 猎取一个对象 内里有当前地点、端口号、协定等等
//onxxxxxxxxx 猎取一系列的事宜监听
//origin 源
//plugins
documen.plugins //能够晓得flash用户有无开启插件[] 就是没有插件
//readyState 检察是不是下载完成
//referrer 【很主要】
document.referrer //举荐人
//scripts 猎取一切的script标签
//scrollingElement 猎取正在转动的元素
//styleSheets 猎取一切css
//title 猎取页面title
//visibilityState 猎取页面是不是被显现
要领
//close() 封闭文档
//createDocumentFragment() 建立DocumentFragment详细用法本身看文档
//createElement() 建立一个元素
//createTextNode() 建立一个文本节点
//execCommand() 当你想写一个父文本编辑器的时刻可用
//exitFullscreen() 退出全屏
//getElementById() 猎取id
//getElementsByClassName() 猎取一切xxx的class
//getElementsByName() 经由过程名字猎取
//getElementsByTagName() 经由过程标署名猎取
//getSelection() 猎取用过选中的文本
//hasFocus() 用户光标是不是在当前页面上
//open() 翻开
//querySelector() 经由过程选择器猎取 一个元素
//querySelectorAll() 经由过程选择器猎取 一切元素
//registerElement() (现在用不到)
//write() 写
//writeln() 写一行
要背 要背 要背 要背
在标签里加text 两种要领:
div1.innerText = ‘hello ‘ //这类会有题目
div.appendChild( document.createTextNode(‘hello world’) ) // 很平安