如何在 HTML 中为元素添加唯一 id?
使用 HTML 中的id 属性为元素添加唯一 id。
实例
你可以尝试运行以下代码来实现 id 属性 -
<html> <body> <h1>Tutorialspoint</h1> <p id = "myid">We provide Tutorials!</p> <button onclick = "display()">More...</button> <script> function display() { document.getElementById("myid").innerHTML = "We provide learning videos as well"; } </script> </body> </html>
广告