--- title: slug: Web/HTML/Element/q tags: - HTML - Web - 引用 - 标签 translation_of: Web/HTML/Element/q ---
{{HTMLRef}}

HTML引用标签 (<q>)表示一个封闭的并且是短的行内引用的文本. 这个标签是用来引用短的文本,所以请不要引入换行符; 对于长的文本的引用请使用 {{HTMLElement("blockquote")}} 替代.

Content categories Flow content, phrasing content, palpable content.
Permitted content Phrasing content.
Tag omission {{no_tag_omission}}
Permitted parent elements Any element that accepts phrasing content.
DOM interface {{domxref("HTMLQuoteElement")}}

{{NoteStart}}大多数现代浏览器,会为 <q> 文本添加引号()。旧浏览器可能需要使用 CSS 添加引号。
IE、Edge 与 Firefox、Chrome 引号样式略有不同。{{NoteEnd}}

属性

<q>标签拥有 全局属性.

{{htmlattrdef("cite")}}
这个属性的值是URL,意在指出被引用的文本的源文档或者源信息. 这个属性重在解释这个引用的参考或者是上下文.

示例

HTML 内容

<p>Everytime Kenny is killed, Stan will announce
   <q cite="http://en.wikipedia.org/wiki/Kenny_McCormick#Cultural_impact">
     Oh my God, you/they killed Kenny!
   </q>.
</p>

{{ EmbedLiveSample('示例') }}

说明

Specification Status Comment
{{SpecName('HTML WHATWG', 'text-level-semantics.html#the-q-element', '<q>')}} {{Spec2('HTML WHATWG')}}
{{SpecName('HTML5 W3C', 'text-level-semantics.html#the-q-element', '<q>')}} {{Spec2('HTML5 W3C')}}
{{SpecName('HTML4.01', 'struct/text.html#h-9.2.2', '<q>')}} {{Spec2('HTML4.01')}} Initial definition

浏览器兼容性

{{Compat("html.elements.q")}}

另见