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

Đối tượng Gạch chân HTML DOM

Đối tượng Gạch chân HTML DOM trong HTML đại diện cho phần tử .

Tạo phần tử

var uObject = document.createElement(“U”)

Hãy để chúng tôi xem ví dụ về Gạch chân phần tử -

Ví dụ

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM Underline</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
   <form>
      <fieldset>
         <legend>HTML-DOM-Underline</legend>
         <h2 ><u id="Underline">Warning: </u>This is a Demo Example</h2>
         <input type="button" value="Show" onclick="getBetterDisp()">
      </fieldset>
   </form>
<script>
   var uObject = document.getElementById("Underline");
   function getBetterDisp() {
      uObject.style.backgroundColor = '#DC3545';
      uObject.style.color = '#FFF';
   }
</script>
</body>
</html>

Đầu ra

Trước khi nhấp vào hiển thị nút -

Đối tượng Gạch chân HTML DOM

Sau khi nhấp vào hiển thị nút -

Đối tượng Gạch chân HTML DOM