用javascript编写整体函数,实现打印当前时间:2024-10-17014:29:08
时间: 2024-10-19 07:06:18 浏览: 13
JS实现页面打印(整体、局部)
在JavaScript中,你可以创建一个函数来获取并打印当前日期和时间。下面是一个简单的例子,它使用内置的`Date`对象来获取当前的年、月、日、小时、分钟和秒:
```javascript
function printCurrentTime() {
var now = new Date();
var year = now.getFullYear(); // 年份
var month = '0' + (now.getMonth() + 1); // 月份,注意月份从0开始计数,加1
var day = '0' + now.getDate(); // 日
var hours = '0' + now.getHours(); // 小时
var minutes = '0' + now.getMinutes(); // 分钟
var seconds = '0' + now.getSeconds(); // 秒
// 保留两位小数点的毫秒数(如果需要)
var milliseconds = now.getMilliseconds().toFixed(0);
// 组合成字符串,并打印出来
var currentTime = `${year}-${month.slice(-2)}-${day.slice(-2)}${hours.slice(-2)}:${minutes.slice(-2)}:${seconds.slice(-2)}.${milliseconds}`;
console.log(currentTime);
}
// 调用函数打印当前时间
printCurrentTime();
```
这个函数会按照 "YYYY-MM-DD HH:mm:ss.SSS" 的格式打印出当前时间。如果你想让它返回一个字符串而不是直接打印,只需稍微调整一下输出部分。
阅读全文