首页
HTML
HTML 输入类型
试用:input type = week
运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>Display a Week Input Control</h1> <p>The <strong>input type="week"</strong> allows the user to select a week and year.</p> <p>If the browser supports it, a date picker pops up when entering the input field.</p> <form action="/action_page.php"> <label for="week">Select a week:</label> <input type="week" id="week" name="week"> <input type="submit" value="Submit"> </form> <p><strong>Note:</strong> type="week" is not supported in Firefox, Safari or Internet Explorer 11.</p> </body> </html>