Obitun DOM na Blockquote

Blockquote 对象

Blockquote 对象表示 HTML <blockquote> 元素。

访问 Blockquote 对象

您可以通过使用 getElementById() 来访问 <blockquote> 元素:

var x = document.getElementById("myBlockquote");

Try It Yourself

创建 Blockquote 对象

您可以通过使用 document.createElement() 方法来创建 <blockquote> 元素:

var x = document.createElement("BLOCKQUOTE");

Try It Yourself

Properties Object Blockquote

Attribute Description
cite Set or return the value of the referenced cite attribute.

Standard properties and events

Object Blockquote supports standardAttributeAndEvent.

Pages Related

Manual Reference HTML:Tag <blockquote> HTML

Manual Reference JavaScript:HTML DOM Quote ɗan