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

HTML DOM S 객체

<시간/>

HTML DOM S 개체는 HTML 문서의 <> 요소를 나타냅니다.

s 객체를 생성합시다 -

구문

다음은 구문입니다 -

document.createElement(“S”);

예시

s 객체 −

의 예를 살펴보겠습니다.
<!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 S Object Demo</h1>
<button onclick="createS()" class="btn">Create a s object</button>
<script>
   function createS() {
      var sElement = document.createElement("S");
      sElement.innerHTML="Hi! I'm <s> element in HTML";
      document.body.appendChild(sElement);
   }
</script>
</body>
</html>

출력

이것은 다음과 같은 출력을 생성합니다 -

HTML DOM S 객체

"객체 만들기를 클릭합니다. ” 버튼을 눌러 s 객체 생성 -

HTML DOM S 객체