How to add a unique identifier to an element in HTML?

WBOY
Release: 2023-09-01 11:37:06
forward
1396 people have browsed it

How to add a unique identifier to an element in HTML?

Use the id attribute in HTML to add a unique identifier for an element.

Example

You can try running the following code to implement the id attribute−

<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>
Copy after login

The above is the detailed content of How to add a unique identifier to an element in HTML?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template