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

HTML DOM 입력 버튼 양식 속성

<시간/>

HTML DOM 입력 버튼 양식 속성은 입력 버튼을 둘러싸는 양식의 참조를 반환합니다.

구문

다음은 구문입니다 -

object.form

예시

입력 버튼 양식 속성의 예를 살펴보겠습니다 -

<!DOCTYPE html>
<html>
<head>
<title<HTML DOM form Property</title<
<style>
   body{
      text-align:center;
   }
   .btn{
      display:block;
      margin:1rem auto;
      background-color:#db133a;
      color:#fff;
      border:1px solid #db133a;
      padding:0.5rem;
      border-radius:50px;
      width:20%;
   }
   .show-message{
      font-weight:bold;
      font-size:1.4rem;
      color:#ffc107;
   }
</style>
</head>
<body>
<h1>form Property Example</h1>
<form id="form1">
<fieldset>
<legend>Form 1</legend>
<input type="button" class="btn" value="button 1">
<input type="button" class="btn" value="button 2">
</fieldset>
</form<
<form id="form2">
<fieldset>
<legend>Form 2</legend>
<input type="button" class="btn" value="button 1">
<input type="button" class="btn" value="button 2">
</fieldset>
</form>
<div class="show-message"></div>
<script>
   var btnArr= document.querySelectorAll(".btn");
   var showMessage= document.querySelector(".show-message");
   btnArr.forEach((ele)=>{
      ele.addEventListener("click",(e)=>{
         showMessage.innerHTML="";
         if(e.target.form.id === 'form1'){
            showMessage.innerHTML="I'm from form 1";
         } else {
            showMessage.innerHTML="I'm from form 2";
         }
      })
   });
</script>
</body>
</html>

출력

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

HTML DOM 입력 버튼 양식 속성

"버튼 1/버튼 2 클릭 ” 형식 1 −

HTML DOM 입력 버튼 양식 속성

이제 "버튼 1/버튼 2를 클릭하세요. ” 형식 2 −

HTML DOM 입력 버튼 양식 속성