Javascript examples for DOM HTML Element:Input Week
The stepUp() method increments the WEEKS value of the week field by a specified number.
Parameter | Description |
---|---|
number | Required. Specifies the amount of weeks the week field should increase. Default to "1" |
No return value
The following code shows how to Increment the value of a week field by 10 weeks:
<!DOCTYPE html> <html> <body> <input type="week" id="myWeek" value="2014-W15"> <button onclick="myFunction()">Test</button> <script> function myFunction() {//from ww w . jav a2s . co m document.getElementById("myWeek").stepUp(10); } </script> </body> </html>