gpt4 book ai didi

javascript - 如何在html中的输入文本框中打印日期

转载 作者:行者123 更新时间:2023-11-30 10:35:49 25 4
gpt4 key购买 nike

这是我的代码,我想在使用 onload 事件输入日期文本后在文本框中打印日期。

<!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>

最佳答案

你必须

  • 正确创建 Date 对象(您缺少 new)
  • 根据rfc3339格式化它(例如:2012/12/30)

改变

document.getElementById("fname").value = Date();

var now = new Date();
var formatedDate = now.getFullYear() + '-' + (now.getMonth() + 1) + '-' + now.getDate();​
document.getElementById("fname").value = formatedDate;

Demonstration

请注意,某些浏览器接受其他格式,但 Chrome 不接受,因为它符合 the norm .

关于javascript - 如何在html中的输入文本框中打印日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14092851/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com