欢迎访问服务器技术网-www.fuwuqijishu.com

td/th abbr 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 109次浏览 0个评论 扫描二维码
文章目录[隐藏]

td/th abbr 属性

td/th 对象


定义和用法

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

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

语法

设置 abbr 属性:

tdObject.abbr=”text

或者

thObject.abbr=”text

返回 abbr 属性:

tdObject.abbr

或者

thObject.abbr

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


浏览器支持

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


实例

实例

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

<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title>菜鸟教程(runoob.com)</title>
<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”>保持名称简短的缩写,浏览器可能重复显示它们。</td>
        <td>单元格数据</td>
    </tr>
<tr>
<td>单元格数据</td>
<td>单元格数据</td>
</tr>
</table>
<br>
<button type=”button” onclick=”displayResult()”>获取第一个单元格的缩写</button>

</body>
</html>


td/th 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2119.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900