這裏是我的代碼,我想在使用onload事件輸入日期文本後在文本框中打印日期。如何在html中輸入文本框中打印日期
<!DOCTYPE html>
<html>
<head>
<script>
function displayDate() {
document.getElementById("fname").value = Date();
}
</script>
</head>
<body onload="displayDate()">
Enter date: <input type="date" id="fname" readonly />
</body>
</html>
您確定要輸入type =「date」嗎?如果它是隻讀的,只需使用type =「text」。 – bnieland
日期類型輸入的一個優點是它根據用戶的區域設置自動格式化。 –