目录

HTML DOM ins 对象


插入对象

Ins 对象表示 HTML <ins> 元素。

访问 Ins 对象

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

示例

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

创建一个 Ins 对象

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

示例

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

Ins 对象属性

Property Description
cite Sets or returns the value of the cite attribute of an inserted text
dateTime Sets or returns the value of the datetime attribute of an inserted text

标准属性和事件

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


相关页面

HTML 教程:HTML 文本格式

HTML 参考:HTML <ins> 标签

JavaScript 参考:HTML DOM 删除对象