是的,JavaScript有一个内置的Date对象,可以用于获取当前系统时间。以下是几个示例:
var currentDate = new Date(); console.log(currentDate);
输出:
Tue Jun 15 2021 09:57:31 GMT+0800 (China Standard Time)
var currentDate = new Date(); var year = currentDate.getFullYear(); var month = currentDate.getMonth() + 1; var day = currentDate.getDate(); console.log(year + "-" + month + "-" + day);
输出:
2021-6-15
var currentDate = new Date(); var hours = currentDate.getHours(); var minutes = currentDate.getMinutes(); var seconds = currentDate.getSeconds(); console.log(hours + ":" + minutes + ":" + seconds);
输出:
9:57:31
需要注意的是,Date对象返回的时间是基于用户电脑的本地时间。如果你需要获取服务器时间,你需要发送一个AJAX请求到服务器并获取其响应中的时间。
以上是javascript调用系统时间函数吗的详细内容。更多信息请关注PHP中文网其他相关文章!