作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 Date.now()
获取 unix 格式的当前时间戳。我尝试从时间戳中删除最后的 x 个字符。我尝试使用 currentTime = currentTime.slice(0, -4);
但我得到 Uncaught TypeError: currenTime.slice is not a function
currentTime = Date.now();
document.getElementById("out1").innerHTML = "out1 = " + currentTime;
currentTime = currentTime.slice(0, -4);
document.getElementById("out2").innerHTML = "out2 = " + currentTime;
<p id="out1">out1 = </p>
<p id="out2">out2 = </p>
最佳答案
您可以将日期转换为字符串:
Date.now().toString().slice(0, -4)
关于javascript - 如何从日期中切出 x 个字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37027854/
我是一名优秀的程序员,十分优秀!