Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

ช่องทำเครื่องหมายอินพุต HTML DOM defaultChecked Property


กล่องกาเครื่องหมายอินพุต HTML DOM defaultChecked คุณสมบัติส่งกลับค่าเริ่มต้นของแอตทริบิวต์ที่เลือกของช่องทำเครื่องหมายใน HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

object.defaultChecked

ตัวอย่าง

ให้เราดูตัวอย่างคุณสมบัติ defaultChecked -

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM checked property</title>
<style>
   body{
      text-align:center;
   }
   p{
      font-size:1.5rem;
      color:#ff8741;
   }
   input{
      width:30px;
      height:30px;
   }
   button{
      background-color:#db133a;
      color:#fff;
      padding:8px;
      border:none;
      width:180px;
      margin:0.5rem;
      border-radius:50px;
      outline:none;
      font-weight:bold;
   }
   .show-msg{
      color:#db133a;
      font-size:1.5rem;
      font-weight:bold;
   }
</style>
</head>
<body>
<h1>checked Property Example</h1>
<p>Are you smart?</p>
<input type="checkbox" checked>
<br>
<button onclick="check()">Lets Check? Click me</button>
<div class="show-msg"></div>
<script>
   function check() {
      var input = document.querySelector("input");
      var showMsg = document.querySelector(".show-msg");
      if(input.defaultChecked === true){
         showMsg.innerHTML="You are right!You are smart by default";
      } else {
         showMsg.innerHTML="Hmmmmm!You are not smart by default";
      }
   }
</script>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ช่องทำเครื่องหมายอินพุต HTML DOM defaultChecked Property

คลิกที่ “มาตรวจสอบกันไหม? คลิกฉัน ” เพื่อตรวจสอบว่าช่องทำเครื่องหมายถูกเลือกโดยค่าเริ่มต้นหรือไม่

ช่องทำเครื่องหมายอินพุต HTML DOM defaultChecked Property