HTML DOM Cite 对象
JavaScript基础 2022-05-13 16:16:52小码哥的IT人生shichen
HTML DOM Cite 对象
Cite 对象
Cite 对象代表 HTML <cite> 元素。
访问 Cite 对象
您可使用 getElementById() 来访问 <cite> 元素:
示例代码:
var x = document.getElementById("myCite");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>如何访问 CITE 元素的演示</h3>
<img src="/i/photo/tulip.jpg" alt="The Tulip" width="300" height="300">
<p><cite id="myCite">《郁金香》</cite> W3School 团队拍摄于 2019 年。</p>
<p>单击按钮将引文的颜色设置为红色。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
var x = document.getElementById("myCite");
x.style.color = "red";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Cite 对象
您可使用 document.createElement() 方法来创建 <cite> 元素:
示例代码:
var x = document.createElement("CITE");
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>单击该按钮以创建带有一些文本的 CITE 元素。</p>
<button onclick="myFunction()">试一试</button><br><br>
<img src="/i/photo/tulip.jpg" alt="The Tulip" width="300" height="300">
<script>
function myFunction() {
var x = document.createElement("CITE");
var t = document.createTextNode("《郁金香》");
x.appendChild(t);
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
相关页面
HTML 参考手册:HTML <cite> 标签