HTML DOM Underline 对象

Underline 对象

Underline 对象代表 HTML <u> 元素。

访问 Underline 对象

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

var x = document.getElementById("myU");

亲自试一试

创建 Underline 对象

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

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

亲自试一试

标准属性和事件

Underline 对象支持标准属性事件

相关页面

HTML 教程:HTML 文本格式化元素

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