白菜哲学吧 关注:1贴子:56
  • 0回复贴,共1

表单插入当前时间

只看楼主收藏回复

<html>
<head>
<title>无标题文档</title>
<script>
function t(){
var now= new Date();
var h=now.getHours();
var m=now.getMinutes();
var s=now.getSeconds();
if (h>=0 && h <=12)
var ho=" AM";
if (h>12 && h<24)
var ho=" PM";
var tt=h+":"+m+":"+s+ho;
document.getElementById("time").value=tt;
}
setInterval('t()',500);
</script>
</head>
<body>
<form>
<input type="text" id="time" value=""/>
</form>
</body>
</html>


IP属地:湖北1楼2015-11-12 16:17回复