codecamp

HTML DOM td/th abbr 属性

td/th abbr 属性

td/th 对象参考手册 td/th 对象

定义和用法

abbr 属性可设置或返回表元中内容的缩写版本(针对非可视的媒介,比如语音和盲文)。

如果设置了该属性,用户只能听到 abbr 属性的值(不是单元中的内容)。

语法

设置 abbr 属性:

tdObject.abbr="text"

或者

thObject.abbr="text"

返回 abbr 属性:

tdObject.abbr

或者

thObject.abbr

提示: abbr 属性没有默认值。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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


实例

实例

下面的例子可提示第一个单元格的 abbr::

<html>
<head>
<script>
function displayResult()
{
var table=document.getElementById("myTable");
alert(table.rows[0].cells[0].abbr);
}
</script>
</head>
<body>

<table id="myTable" border="1">
  <tr>
    <td abbr="def">Keep abbreviated names short.
    Browsers may render them repeatedly.</td>
    <td>cell data</td>
  </tr>
  <tr>
    <td>cell data</td>
    <td>cell data</td>
  </tr>
</table>
<br>
<button type="button" onclick="displayResult()">Get abbreviation</button>

</body>
</html>

尝试一下 »


td/th 对象参考手册 td/th 对象
温馨提示
下载编程狮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; }