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

Đối tượng lấy mẫu DOM trong HTML

Đối tượng HTML DOM Samp đại diện cho phần tử của tài liệu HTML.

Hãy để chúng tôi tạo một đối tượng samp -

Cú pháp

Sau đây là cú pháp -

document.createElement(“SAMP”);

Ví dụ

Hãy để chúng tôi xem một ví dụ về đối tượng samp -

<!DOCTYPE html>
<html>
<head>
<style>
   body{
      text-align:center;
      background-color:#fff;
      color:#0197F6;
   }
   h1{
      color:#23CE6B;
   }
   .drop-down{
      width:35%;
      border:2px solid #fff;
      font-weight:bold;
      padding:8px;
   }
   .btn{
      background-color:#fff;
      border:1.5px dashed #0197F6;
      height:2rem;
      border-radius:2px;
      width:60%;
      margin:2rem auto;
      display:block;
      color:#0197F6;
      outline:none;
      cursor:pointer;
   }
   p{
      font-size:1.2rem;
      background-color:#db133a;
      color:#fff;
      padding:8px;
   }
</style>
</head>
<body>
<h1>DOM Samp Object Demo</h1>
<button onclick="createSamp()" class="btn">Create a samp object</button>
<script>
   function createSamp() {
      var sampElement = document.createElement("SAMP");
      sampElement.innerHTML="Ouput of console.log(2+3) in JavaScript is 5";
      document.body.appendChild(sampElement);
   }
</script>
</body>
</html>

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Đối tượng lấy mẫu DOM trong HTML

Nhấp vào “ Tạo đối tượng lấy mẫu ”Để tạo một đối tượng lấy mẫu.

Đối tượng lấy mẫu DOM trong HTML