目录

HTML DOM q 对象


报价对象

Quote 对象代表一个 HTML <q> 元素。

访问报价对象

您可以使用 getElementById() 访问 <q> 元素:

示例

var x = document.getElementById("myQuote");
亲自试一试 »

创建报价对象

您可以使用 document.createElement() 方法创建 <q> 元素:

示例

var x = document.createElement("Q");
亲自试一试 »

引用对象属性

Property Description
cite Sets or returns the value of the cite attribute of a quotation

标准属性和事件

Quote 对象还支持标准特性事件


相关页面

HTML 参考:HTML <q> 标签

JavaScript 参考:HTML DOM 块引用对象