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

HTML DOM Input DatetimeLocal stepDown( ) Method


HTML DOM Input DatetimeLocal stepdown() วิธีการกำหนดจำนวนนาทีที่ช่อง datetimeLocal ควรลดลง

ไวยากรณ์

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

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

inputDatetimeLocalObject.stepDown(number)

ตัวอย่าง

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

<!DOCTYPE html>
<html>
<head>
<title>Input DatetimeLocal stepDown()</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>Datetime-Local-stepDown( )</legend>
<label for="datetimeLocalSelect">Local Date Time :
<input type="datetime-local" id="datetimeLocalSelect" value="2010-12-21T23:50">
</label>
<input type="button" onclick="changeStep(10)" value="Decrease by 10">
<input type="button" onclick="changeStep(25)" value="Decrease by 25">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var inputDatetimeLocal = document.getElementById("datetimeLocalSelect");
   function changeStep(myStepDown) {
      inputDatetimeLocal.stepDown(myStepDown);
      divDisplay.textContent = 'Current Step: '+myStepDown;
   }
</script>
</body>
</html>

ผลลัพธ์

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

ก่อนคลิกปุ่มใด ๆ −

HTML DOM Input DatetimeLocal stepDown( ) Method

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

HTML DOM Input DatetimeLocal stepDown( ) Method

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

HTML DOM Input DatetimeLocal stepDown( ) Method