JS获取当前时间(年月日时分秒)的实例代码,详细代码如下:JS获取当前时间(年月日时分秒)的实例代码,详细代码如下: p id="time"/pscriptvar time = document.getElementById("time") function show() {let date = new Date();let year = date.getFullYear(); //获取当前年份let mon = date.getMonth() + 1; //获取当前月份let da = date.getDate(); //获取当
<p id="time"></p>
<script>
var time = document.getElementById("time")
function show() {
let date = new Date();
let year = date.getFullYear(); //获取当前年份
let mon = date.getMonth() + 1; //获取当前月份
let da = date.getDate(); //获取当前日
let h = date.getHours(); //获取小时
let m = date.getMinutes(); //获取分钟
let s = date.getSeconds(); //获取秒
time.innerText = `${year} ${mon} ${da} ${h}:${m}:${s}`;
//通过html中p标签id为time的获取到时间运行
}
setInterval("show()", 1000);
</script>
沃梦达教程
本文标题为:javascript获取当前时间(年月日时分秒)的实例代码
基础教程推荐
猜你喜欢
- CSS加载社交按钮 1970-01-01
- Bootstrap .pagination-sm类 1970-01-01
- Bootstrap创建下拉菜单 1970-01-01
- CSS结合样式 1970-01-01
- Bootstrap .helper类 1970-01-01
- Bootstrap table-hover类 1970-01-01
- Bootstrap向表中添加更密集的信息 1970-01-01
- Bootstrap垂直堆栈选项卡 1970-01-01
- D3.js selectAll()用法 2022-07-13
- Bootstrap clearfix类 1970-01-01