Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML DOM tagName คุณสมบัติ


คุณสมบัติชื่อแท็ก HTML DOM ส่งกลับชื่อแท็กขององค์ประกอบ HTML ในเอกสาร HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

element.tagName

ให้เราดูตัวอย่างของ HTML DOM tagName คุณสมบัติ−

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #FBAB7E;
      background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
      text-align: center;
   }
   .btn {
      background: #db133a;
      border: none;
      height: 2rem;
      border-radius: 2px;
      width: 40%;
      display: block;
      color: #fff;
      outline: none;
      cursor: pointer;
      margin: 1rem auto;
   }
</style>
</head>
<body>
<h1>HTML DOM tagName Property Demo</h1>
<button class="btn" onclick="display()">Click me to show my tag name</button>
<div class="show"></div>
<script>
   function display() {
      document.querySelector('.show').innerHTML = 'Tag name is: ' +                document.querySelector('button').tagName;
   }
</script>
</body>
</html>

ผลลัพธ์

HTML DOM tagName คุณสมบัติ

คลิกที่ “คลิกฉันเพื่อแสดงชื่อแท็กของฉัน ” เพื่อแสดงชื่อแท็กของ สีแดง ปุ่ม.

HTML DOM tagName คุณสมบัติ