HTML DOM Ins 对象表示 HTML 文档的 <ins> 元素。
创建ins对象
用法
以下是语法 -
document.createElement(“INS”);
ins 对象的属性
属性 | 解释 |
---|---|
cite | 它返回并更改 HTML 文档中 ins 元素的 cite 属性值。 |
dateTime | 它返回并更改 HTML 文档中 ins 元素的 cite 属性值。 |
让我们看一个 ins 对象的例子 -
示例
<!DOCTYPE html>
<html>
<style>
body {
text-align:center;
background-color:#fff;
color:#0197F6;
}
h1 {
color:#23CE6B;
}
</style>
<body>
<h1>DOM ins Object Demo</h1>
<button onclick="createIns()" class="btn">Create an ins object</button>
<script>
function createIns() {
var insElement = document.createElement("INS");
insElement.innerHTML = 'I\'m a <ins> element in HTML';
document.body.appendChild(insElement);
}
</script>
</body>
</html>
输出
点击 ”Create an ins object”按钮来创建一个ins对象。
相关用法
- HTML DOM Input Month用法及代码示例
- HTML DOM Input Range用法及代码示例
- HTML DOM InputEvent data属性用法及代码示例
- HTML DOM Input Date用法及代码示例
- HTML DOM Input Submit用法及代码示例
- HTML DOM Input Number用法及代码示例
- HTML DOM Input Week用法及代码示例
- HTML DOM Input Search用法及代码示例
- HTML DOM Input Checkbox用法及代码示例
- HTML DOM Input FileUpload用法及代码示例
- HTML DOM Input Reset用法及代码示例
- HTML DOM Input Color用法及代码示例
- HTML DOM Input Image用法及代码示例
- HTML DOM Input Password用法及代码示例
- HTML DOM Input Hidden用法及代码示例
- HTML DOM Input URL用法及代码示例
- HTML DOM Input Text用法及代码示例
- HTML DOM Input DatetimeLocal用法及代码示例
- HTML DOM Input Time用法及代码示例
- HTML DOM InputEvent inputType属性用法及代码示例
注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM Ins Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。