目录

HTML DOM div 对象


Div 对象

Div 对象表示 HTML <div> 元素。

访问 Div 对象

您可以使用 getElementById() 访问 <div> 元素:

示例

var x = document.getElementById("myDIV");
亲自试一试 »

创建一个 Div 对象

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

示例

var x = document.createElement("DIV");
亲自试一试 »

Div 对象属性

Property Description
align Not supported in HTML5. Use style.textAlign instead.
Sets or returns the value of the align attribute of the <div> element

标准属性和事件

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


相关页面

HTML 教程:HTML 块

HTML 参考:HTML <div> 标签