734 B
734 B
DOM
节点层次
节点类型
Document
nodeType 9
nodeName '#document'
nodeValue null
parentNode null
ownerDocument null
// 获取body
var body = document.body
// 标题
// 获取
var name = document.title;
// 修改
document.title = "新名字"
// 获取url
document.URL
// 获取域名
document.domain
// 获取来源
document.referrer
选择元素
- id
- class
- name
- tagname