最新的Web開發教程
 

插件舉物業

插件對象參考 插件對象

返回的URL,這解釋了為什麼一些文本插入文檔:

var x = document.getElementById("myIns").cite;

x的結果可能是:

http://www.example.com/example/why_inserted.htm
試一試»

定義和用法

該舉屬性設置或返回的值cite插入文本的屬性。

cite屬性指定的URL,這解釋了為什麼文本被插入原因的文件/改變。

注意: cite屬性有在普通的網絡瀏覽器沒有視覺效果,但是可以通過屏幕閱讀器使用。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

該舉屬性在所有主流瀏覽器的支持。


句法

返回引用屬性:

insObject .cite

設置引用屬性:

insObject .cite=URL

屬性值

Value Description
URL Specifies the source URL to the document that explains why the text was inserted/changed.

Possible values:
  • An absolute URL - Points to another web site (like cite="http://www.example.com")
  • A relative URL - Points to a page within a web site (like cite="example.html")

技術細節

返回值: 一個字符串,代表源文檔的URL

更多示例

更改的值cite屬性:

document.getElementById("myIns").cite = "http://www.example.com/whyweinsertedsometext.htm";
試一試»

相關頁面

HTML參考: HTML <ins>引用屬性


插件對象參考 插件對象