Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML DOM 밑줄 개체

<시간/>

HTML의 HTML DOM 밑줄 개체는 요소를 나타냅니다.

만들기 요소

var uObject = document.createElement(“U”)

밑줄의 예를 살펴보겠습니다. 요소 -

예시

<!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>

출력

표시를 클릭하기 전에 버튼 -

HTML DOM 밑줄 개체

표시를 클릭한 후 버튼 -

HTML DOM 밑줄 개체