目录

HTML DOM body 对象


主体对象

Body 对象表示 HTML <body> 元素。

访问主体对象

您可以使用 getElementsByTagName() 访问 <body> 元素:

示例

var x = document.getElementsByTagName("BODY")[0];
亲自试一试 »

提示:您还可以使用以下方法访问 <body> 元素文档正文属性。

创建主体对象

您可以使用 document.createElement() 方法创建 <body> 元素:

var x = document.createElement("BODY");

主体对象属性

Property Description
aLink Not supported in HTML5. See CSS :active Selector instead.
Sets or returns the color of an active link in a document
background Not supported in HTML5. Use style.backgroundImage instead.
Sets or returns the background image for a document
bgColor Not supported in HTML5. Use style.backgroundColor instead.
Sets or returns the background color of a document
link Not supported in HTML5. See CSS :link Selector instead.
Sets or returns the color of unvisited links in a document
text Not supported in HTML5. Use style.color instead.
Sets or returns the color of the text in a document
vLink Not supported in HTML5. See CSS :visited Selector instead.
Sets or returns the color of visited links in a document

标准属性和事件

Body对象也支持标准特性事件


相关页面

HTML 参考:HTML <body> 标签