codecamp

Blockquote cite 属性

Blockquote cite 属性

Blockquote 对象参考手册 Blockquote 对象

实例

返回一个引用来源:

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

x 输出结果为:

http://www.worldwildlife.org/who/index.html

尝试一下 »

定义与使用

cite 属性用于设置或者返回一个引用的cite属性值 。

cite 属性描述了引用的URL源地址。

注意: cite 属性在普通的 Web 浏览器中没有视觉效果,但可以通过屏幕阅读器使用。


浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

所有主流浏览器都支持 cite 属性。


语法

返回 cite 属性:

blockquoteObject.cite

设置 cite 属性:

blockquoteObject.cite=URL

属性值

描述
URL 引用的来源的 URL。

可能的值:

  • 绝对 URL - 指向另一个网站(比如 cite="http://www.example.com")
  • 相对 URL - 指向网站内的一个页面(比如 cite="example.html")

技术描述

返回值: 一个字符串, 原文档的URL地址。


更多实例

实例

修改引用的 cite 属性值:

document.getElementById("myBlockquote").cite="http://www.cnn.com/";

尝试一下 »


相关页面

HTML 参考手册: HTML <blockquote> cite 属性

Blockquote 对象参考手册 Blockquote 对象

温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML DOM对象

HTML DOM 引用对象

HTML DOM Password 对象

HTML DOM Link 对象

HTML DOM Select 对象

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }