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

HTML DOM Input DatetimeLocal step Property


คุณสมบัติขั้นตอน HTML DOM Input DatetimeLocal จะกำหนดช่วงเวลาทางกฎหมายเป็นวินาทีหรือมิลลิวินาที

ไวยากรณ์

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

  • คืนค่าตัวเลข
inputDatetimeLocalObject.step
  • การตั้งค่า ขั้นตอน แอตทริบิวต์ค่าตัวเลข
inputDatetimeLocalObject.step = number

พารามิเตอร์

พารามิเตอร์ จำนวน ค่า -

ค่า คำอธิบาย
วินาที ค่าที่ถูกต้องประกอบด้วยตัวเลขที่หาร 60 ได้ลงตัว (เช่น 10,15,20)
มิลลิวินาที ค่าที่ถูกต้องเริ่มต้นด้วย “.” และหาร 1000 ได้ลงตัว (เช่น .10, .20, .01)

ตัวอย่าง

ให้เราดูตัวอย่างของ Input DatetimeLocal step ทรัพย์สิน −

<!DOCTYPE html>
<html>
<head>
<title>Input DatetimeLocal step</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-step</legend>
<label for="datetimeLocalSelect">Local Date Time :
<input type="datetime-local" id="datetimeLocalSelect" step="2">
</label>
<input type="button" onclick="changeStep('10')" value="Step Seconds to 10">
<input type="button" onclick="changeStep('.10')" value="Step milliseconds to .10">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var inputDatetimeLocal = document.getElementById("datetimeLocalSelect");
   function changeStep(myStep) {
      inputDatetimeLocal.step = myStep;
      if(inputDatetimeLocal.step.indexOf('.') === -1)
         divDisplay.textContent = 'Seconds step: '+inputDatetimeLocal.step;
      else
         divDisplay.textContent = 'Milli-seconds step: '+inputDatetimeLocal.step;
   }
</script>
</body>
</html>

ผลลัพธ์

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

คลิก “ขั้นตอนวินาทีถึง 10” ปุ่ม

HTML DOM Input DatetimeLocal step Property

คลิก “ขั้นตอนมิลลิวินาทีถึง .10” ปุ่ม −

HTML DOM Input DatetimeLocal step Property