layer.open input 获取当前时间
时间: 2023-09-01 17:13:05 浏览: 95
获取当前时间
你可以使用 JavaScript 中的 Date 对象来获取当前时间。以下是获取当前时间并显示在 layer.open 弹窗中的示例代码:
```javascript
// 获取当前时间
var now = new Date();
var year = now.getFullYear(); // 年
var month = now.getMonth() + 1; // 月
var day = now.getDate(); // 日
var hour = now.getHours(); // 时
var minute = now.getMinutes(); // 分
var second = now.getSeconds(); // 秒
// 格式化时间
var currentTime = year + "-" + month + "-" + day + " " + hour + ":" + minute + ":" + second;
// 弹窗显示当前时间
layer.open({
content: "当前时间为:" + currentTime
});
```
其中,now.getFullYear() 获取当前年份,now.getMonth() 获取当前月份(注意返回值是 0-11,所以要加 1),now.getDate() 获取当前日,now.getHours() 获取当前小时数,now.getMinutes() 获取当前分钟数,now.getSeconds() 获取当前秒数。最后将它们拼接在一起格式化成一个字符串,再在 layer.open 弹窗中显示即可。
阅读全文