HTML DOM cite 屬性
HTML DOM cite 屬性返回有關文字插入原因的檔案 URL。
語法
以下為語法 −
返回字串值
insObject.cite
示例
讓我們看一個 ins cite 屬性的示例 −
<!DOCTYPE html> <html> <head> <title>ins cite</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } </style> </head> <body> <form> <fieldset> <legend>ins-cite</legend> <h1>Fact:</h1> <p>Water cannot persist on moon's surface.<ins id="newInfo" cite="https://www.example.com/water-ice-moon-surface-confirmed.html">Water ice found on moon in 2018.</ins> </p> <input type="button" onclick="showURL()" value="Show Evidence"> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var insCite = document.getElementById("newInfo"); function showURL() { divDisplay.textContent = 'Evidence at: '+insCite.cite; } </script> </body> </html>
輸出
這將生成以下輸出 −
在單擊 ‘顯示證據’ 按鈕之前 −
在單擊 ‘顯示證據’ 按鈕之後 −
廣告