HTML DOM 缩写对象
<abbr> 元素在 HTML 中用于显示缩写。Abbreviation 对象表示此 <abbr> 元素。
在下例中,我们将了解如何访问缩写对象 −
示例
<!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <abbr id="myid" title="Board of Control for Cricket in India">BCCI</abbr> <button onclick="display()">Display the abbreviation title</button> <p id="demo">Abbreviation Title<script> function display() { var a = document.getElementById("myid").title; document.getElementById("demo").innerHTML = a; } </script> </body> </html>
输出

单击按钮以显示标题 −

广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP