x
 
<!DOCTYPE html>
<html>
<body>
<input type="week" id="myWeek" value="2023-W01">
<p>单击该按钮可将星期字段的值增加 1 周(每次单击)。</p>
<p><b>注意:</b>这与在星期字段的“周”部分单击向上箭头的效果相同。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b>Firefox 不支持 type="week" 的输入元素。</p>
<script>
function myFunction() {
  document.getElementById("myWeek").stepUp();
}
</script>
</body>
</html>