javascript页面上使用动态时间具体实现

时间:2024-05-11 09:36:06 


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>

<script type="text/javascript">
//页面上动态时间
function time() {
var dt;
var date = new Date();
dt = date.getFullYear()
+ "/"
+ date.getMonth()
+ "/"
+ date.getDate()
+ " "
+ (date.getHours() <= 9 ? '0' + date.getHours() : date
.getHours())
+ ":"
+ ((date.getMinutes() <= 9 ? '0' + date.getMinutes() : date
.getMinutes()))
+ ":"
+ (date.getSeconds() <= 9 ? '0' + date.getSeconds() : date
.getSeconds());
//document.getElementById("ht").innerHTML=dt;
return dt;
}
setInterval("document.getElementById('ht').innerHTML=time()", 1000);
</script>

</head>

<body>

<span id="ht"></span>
</body>
</html>
标签:页面,动态时间
0
投稿

猜你喜欢

  • 关于vue的element-ui web端引入高德地图并获取经纬度

    2023-07-02 16:48:01
  • Websocket IM聊天教程 教你用GoEasy快速实现IM聊天

    2023-10-04 08:52:52
  • python实现基于信息增益的决策树归纳

    2022-05-20 14:22:47
  • JS获取当前时间的实例代码(昨天、今天、明天)

    2024-04-23 09:28:36
  • 各种SQL语句速查手册

    2007-09-27 19:31:00
  • sql server 复制表从一个数据库到另一个数据库

    2024-01-16 17:53:57
  • 使用javascript将时间转换成今天,昨天,前天等格式

    2024-04-10 10:42:20
  • 微前端qiankun沙箱实现源码解读

    2024-05-02 16:10:25
  • python实现textrank关键词提取

    2021-11-01 16:47:58
  • Pytorch框架之one_hot编码函数解读

    2023-02-16 11:34:05
  • mysql 正确清理binlog日志的两种方法

    2024-01-21 14:11:02
  • Mysql join连接查询的语法与示例

    2024-01-15 07:34:48
  • Python操作mongodb数据库进行模糊查询操作示例

    2024-01-29 03:40:45
  • python错误提示:Errno 2] No such file or directory的解决方法

    2022-03-30 10:46:26
  • Python实现的字典值比较功能示例

    2022-06-29 03:40:41
  • 深入理解python中sort()与sorted()的区别

    2021-08-17 11:46:49
  • python通过apply使用元祖和列表调用函数实例

    2021-02-18 03:18:32
  • vue element table 表格请求后台排序的方法

    2024-05-29 22:49:37
  • 菜鸟课堂:MySQL权限的详细解答

    2009-09-03 11:43:00
  • python聊天室(虽然很简洁,但是可以用)

    2021-05-21 01:10:46
  • asp之家 网络编程 m.aspxhome.com