HTML DOM Blockquote 对象
JavaScript基础 2022-05-13 16:16:33小码哥的IT人生shichen
HTML DOM Blockquote 对象
Blockquote 对象
Blockquote 对象表示 HTML <blockquote> 元素。
访问 Blockquote 对象
您可以通过使用 getElementById() 来访问 <blockquote> 元素:
var x = document.getElementById("myBlockquote");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 BLOCKQUOTE 元素</h3>
<p>Here is a quote from WWF's website:</p>
<blockquote id="myBlockquote" cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature.
</blockquote>
<p>请点击按钮来获得引用的 URL。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.getElementById("myBlockquote").cite;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Blockquote 对象
您可以通过使用 document.createElement() 方法来创建 <blockquote> 元素:
var x = document.createElement("BLOCKQUOTE");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何创建 BLOCKQUOTE 元素</h3>
<p>请点击按钮来创建 BLOCKQUOTE 元素,此引用的来源是 worldwildlife.org。</p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.createElement("BLOCKQUOTE");
var t = document.createTextNode("For 50 years, WWF has been protecting the future of nature.");
x.setAttribute("cite", "http://www.worldwildlife.org/who/index.html");
x.appendChild(t);
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html