HTML DOM Ins 对象
JavaScript基础 2022-05-13 16:19:30小码哥的IT人生shichen
HTML DOM Ins 对象
Ins 对象
Ins 对象表示 HTML <ins> 元素。
访问 Ins 对象
您可以通过使用 getElementById()
来访问 <ins>
元素:
var x = document.getElementById("myIns");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 Ins 元素</h3>
<p><ins id="myIns" cite="why_inserted.htm">这是一段插入的文本。</ins></p>
<p>点击按钮来获得页面的 URL,该页面解释了文本被删除的原因。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.getElementById("myIns").cite;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Ins 对象
您可以通过使用 document.createElement()
方法来创建 <ins>
元素:
var x = document.createElement("INS");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何创建 Ins 元素</h3>
<p>点击按钮来创建 INS 元素。</p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.createElement("INS");
var t = document.createTextNode("被插入的文本");
x.appendChild(t);
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
Ins 对象属性
属性 | 描述 |
---|---|
cite | 设置或返回被插入文本的 cite 属性的值。 |
dateTime | 设置或返回被插入文本的 datetime 属性的值。 |