x
 
<!DOCTYPE html>
<html>
<body>
<input type="week" id="myWeek" value="2023-W01">
<p>单击该按钮可更改星期字段的默认值。</p>
<button type="button" onclick="myFunction()">试一试</button>
<p><b>注意:</b>Internet Explorer 或 Firefox 不支持带有 type="week" 的输入元素。</p>
<script>
function myFunction() {
  document.getElementById("myWeek").defaultValue = "2023-W35";
}
</script>
</body>
</html>