ใช้ document.head คุณสมบัติใน JavaScript เพื่อรับ id ของแท็ก
ของเอกสาร คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน document.head คุณสมบัติใน JavaScript -
<!DOCTYPE html> <html> <head id = "myid"> <title>JavaScript Example</title> </head> <body> <h1>Employee Information</h1> <form> Name: <input type = "text" name = "name" value = "Amit"><br> Subject: <input type = "text" name = "sub" value = "Java"> </form> <script> var a = document.head.id; document.write("<br>Head element id? "+a); </script> </body> </html>