目录

HTML DOM bdo 对象


Bdo对象

Bdo 对象表示 HTML <bdo> 元素。

访问 Bdo 对象

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

示例

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

创建 Bdo 对象

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

示例

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

Bdo 对象属性

Property Description
dir Sets or returns the value of the dir attribute of a <bdo> element

标准属性和事件

Bdo对象支持标准特性事件


相关页面

HTML 参考:HTML <bdo> 标签