HTML DOM Quote 对象
JavaScript基础 2022-05-13 16:22:20小码哥的IT人生shichen
HTML DOM Quote 对象
Quote 对象
Quote 对象表示 HTML <q>
元素。
访问 Quote 对象
您可以通过使用 getElementById()
来访问 <q>
元素:
var x = document.getElementById("myQuote");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 QUOTE 元素</h3>
<p>Here is a quote from WWF's website:</p>
<p>WWF's goal is to:
<q id="myQuote" cite="http://www.wwf.org">
Build a future where people live in harmony with nature.</q>
We hope they succeed.
</p>
<p>点击按钮来获得引用的 URL。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.getElementById("myQuote").cite;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Quote 对象
您可以通过使用 document.createElement()
方法来创建 <q>
元素:
var x = document.createElement("Q");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何创建 QUOTE 元素</h3>
<p>点击按钮来创建引用来源为 wwf.org 的 QUOTE 元素。</p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.createElement("QUOTE");
var t = document.createTextNode("Our goal is to build a future where people live in harmony with nature.");
x.setAttribute("cite", "http://www.wwf.org");
x.appendChild(t);
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
相关页面
HTML 参考手册:HTML <q> 标签