运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
转到 Spaces
<!DOCTYPE html> <html> <body> Year and Week: <input type="week" id="myWeek" name="year_week"> <p>Click the button to return the value of the name attribute of the week field.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myWeek").name; document.getElementById("demo").innerHTML = x; } </script> </body> </html>