HTML DOM Quote Object


Quote Object

The Quote object represents an HTML <q> element.

Access a Quote Object

You can access a <q> element by using getElementById():

Example

var x = document.getElementById("myQuote");
Try it Yourself »

Create a Quote Object

You can create a <q> element by using the document.createElement() method:

Example

var x = document.createElement("Q");
Try it Yourself »

Quote Object Properties

Property 説明
cite Sets or returns the value of the cite attribute of a quotation

Standard Properties and Events

The Quote object also supports the standard properties and events.


Related Pages

HTML reference: HTML <q> tag

JavaScript reference: HTML DOM Blockquote Object