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

HTML DOM Input Date stepDown() Method


HTML DOM Input Date stepdown() วิธีการกำหนดจำนวนวันที่ฟิลด์วันที่ควรลดลง

ไวยากรณ์

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

เรียก ก้าวลง วิธีที่มีตัวเลขซึ่งโดยค่าเริ่มต้นจะเท่ากับ 1

inputDateObject.stepDown(number)

ตัวอย่าง

ให้เราดูตัวอย่างของ Input Date stepdown วิธีการ −

<!DOCTYPE html>
<html>
<head>
<title>Input Date stepDown()</title>
</head>
<body>
<form>
<div>
Calendar: <input type="date" id="dateSelect" value ="2019-07-07">
</div>
</form>
<button onclick="changeStep(2)">Decrease by 2</button>
<button onclick="changeStep(3)">Decrease by 3</button>
<div id="divDisplay"></div>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var inputDate = document.getElementById("dateSelect");
   function changeStep(num){
      if(num===2)
         inputDate.stepDown(2);
      else
         inputDate.stepDown(3);
      divDisplay.textContent = 'Current date decreased by: '+num;
   }
</script>
</body>
</html>

ผลลัพธ์

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

คลิก 'ลดลง 2' ปุ่ม −

HTML DOM Input Date stepDown() Method

คลิก 'ลดลง 3' ปุ่ม −

HTML DOM Input Date stepDown() Method