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>
輸出
單擊按鈕以顯示標題 −
廣告