最新的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>引用属性


插件对象参考 插件对象