运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <input type="week" id="myWeek" value="2014-W15"> <p>Click the button to decrement the value of the week field by 1 week (each time you click).</p> <p><strong>Note:</strong> This is the same as clicking the down arrow on the right side of the week field for the "week" section.</p> <button onclick="myFunction()">Try it</button> <p><strong>Note:</strong> input elements with type="week" are not supported in Firefox.</p> <script> function myFunction() { document.getElementById("myWeek").stepDown(); } </script> </body> </html>