<html>
<body>
<input type="datetime-local" id="myLocalDate" autofocus>
<p>点击按钮查看本地时间字段是否在页面加载后自动获取焦点。</p>
<button onclick="myFunction()">点我</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myLocalDate").autofocus;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>