Javascript 参考手册

HTML DOM 对象

td/th abbr 属性

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 对象

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号