Latest web development tutorials

HTML del cite attribute

HTML del Tag Reference HTML <del> tag

Examples

URL a deleted text, the text explained the reasons for deletion:

<p><del cite="del_demo_cite.htm">这是一个被删除了的文本</del></p>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

No major browsers support cite property, but the property can be used in a screen reader.


Definition and Usage

cite attribute specifies the URL of a document, the document explains why the text was deleted.


Differences between HTML 4.01 and HTML5

NONE.


grammar

<del cite="URL">

Property Value

描述
URL

引用的来源的 URL。

可能的值:

  • 绝对 URL - 指向另一个站点(比如 href="http://www.example.com/song.ogg")
  • 相对 URL - 指向网站内的文件(比如 href="song.ogg")
  • 锚 URL - 指向页面内的一个锚(比如 href="#page")


HTML del Tag Reference HTML <del> tag