[10.DOM]Document类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[10.DOM]Document类型相关的知识,希望对你有一定的参考价值。
document对象是htmlDocument的一个实例,表示整个html页面。document对象是window对象的一个属性,因此可以将其作为全局对象访问。
- 文档的子节点
<html>的引用:document.documentElement
<body>的引用:document.body
- 文档信息
网页标题:document.title
当前页url:document.URL
当前页域名:document.domain
来源页的url:document.referrer
- 查找元素
document.getElementById()、document.getElementsByTagName()、document.getElementsByName()
- 特殊集合
带name的a标签:document.anchors
<form>元素:document.forms
img元素:document.images
带href的a标签:document.links
以上是关于[10.DOM]Document类型的主要内容,如果未能解决你的问题,请参考以下文章
使用$(window).width(),window.outerWidth,window.innerWidth,document.documentElement.clientWidth,documen