轻松上手,快乐学习!

HTML DOM Address 对象


Address 对象

Address 对象代表 HTML <address> 元素。

访问 Address 对象

您可使用 getElementById() 来访问 <address> 元素:

实例

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

创建 Address 对象

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

实例

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

标准属性和事件

Address 对象支持标准 属性事件


相关页面

HTML 参考手册: HTML <address> 标签