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

HTML DOM อินพุตเดือน stepUp() วิธีการ


HTML DOM อินพุตเดือน stepUp() วิธีการเพิ่ม (เพิ่มขึ้น) ค่าของฟิลด์เดือนที่ป้อนตามค่าที่ระบุ

ไวยากรณ์

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

object.stepUp(number)

ที่นี่ ถ้า หมายเลข ละเว้นพารามิเตอร์ จากนั้นจะเพิ่มค่าขึ้น 1

ตัวอย่าง

ให้เราดูตัวอย่างของการป้อนข้อมูลเดือน stepUp() วิธีการ -

<!DOCTYPE html>
<html>
<head>
<title>HTML DOM stepUp()/stepDown() Demo</title>
<style>

   body{
      text-align:center;
      background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%)
      center/cover no-repeat;
      height:100vh;
      color:#fff;
   }

   p{
      font-size:1.5rem;
   }

   input{
      width:40%;
   }

   button{
      background-color:#db133a;
      color:#fff;
      padding:8px;
      border:none;
      width:120px;
      margin:1rem;
      border-radius:50px;
      outline:none;
      cursor:pointer;
   }

</style>
</head>
<body>
<h1>stepUp()/stepDown() Method Demo</h1>
<p>Hi! Select your month of birth</p>
<input type="month">
<br>
<button onclick="incValue()">StepUp Value</button>
<button onclick="decValue()">StepDown Value</button>
<script>
   function incValue() {
      document.querySelector("input").stepUp();
   }
   function decValue() {
      document.querySelector("input").stepDown();
   }
</script>
</body>
</html>

ผลลัพธ์

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

HTML DOM อินพุตเดือน stepUp() วิธีการ

คลิกที่ “ค่า StepUp” หรือ “ค่า StepDown ” เพื่อเพิ่มหรือลดค่าของช่องเดือนที่ป้อน

HTML DOM อินพุตเดือน stepUp() วิธีการ


HTML DOM อินพุตเดือน stepUp() วิธีการ