小码哥的IT人生

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

Blockquote 对象属性

属性 描述
cite 设置或返回引用的 cite 属性的值。

标准属性和事件

Blockquote 对象支持标准属性事件

相关页面

HTML 参考手册:HTML <blockquote> 标签

JavaScript 参考手册:HTML DOM Quote 对象

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024