English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The HTML ins cite attribute specifies the URL of the document, which explains the reason for inserting/changing the text. The cite attribute does not have a visual effect in ordinary web browsers, but it can be used by screen readers.
Inserted text, with a URL pointing to the document that explains the reason for the insertion of this text:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML <ins> cite пroperty using - Basic Tutorial (oldtoolbag.com)</title> </head> <body> <p>This is a text. <ins cite="why_inserted.html">Это вставленный текст.</ins></p> </body> </html>Проверьте, посмотрите ‹/›
IEFirefoxOperaChromeSafari
Атрибут cite не имеет визуального эффекта в обычных веб-браузерах, но может быть использован экранными читателями.
Атрибут cite определяет URL документа, который объясняет причину вставки/изменения текста.
Нет.
<ins cite="URL">
Значение | Описание |
---|---|
URL | Указать адрес документа, который объясняет, почему был вставлен/изменен текст. Возможные значения: Абсолютный URL-адрес-адрес на другом сайте (например, cite =" http://www.example.com") Относительный адрес-пункт на странице сайта (например, cite ="example.html") |