运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> Week and Year: <input type="week" id="myWeek"> <p>Click the button to set a week and year for the week field.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myWeek").value = "2014-W48"; } </script> </body> </html>