Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm thế nào để làm việc với document.head trong JavaScript?

Sử dụng document.head trong JavaScript để lấy id của thẻ của tài liệu. Bạn có thể thử chạy mã sau để triển khai document.head thuộc tính trong 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>