如和用js在DIV中实现当前的年份和时间,并不停变动
2个回答
推荐于2017-09-19 · 知道合伙人软件行家
yfcp
知道合伙人软件行家
向TA提问 私信TA
知道合伙人软件行家
采纳数:1748
获赞数:5544
有多年网站建设相关工作经验。熟悉ASP、ASP.net、VB、JavaScript、HTML等语言和CSS、Ajax等相关技术。
向TA提问 私信TA
关注
展开全部
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style>
.a{background:red;width:350px;height:80px;color:#ffffff;font-size:13px;line-height:80px;text-align:center}
</style>
</head>
<body>
<div class="a" id=x></div>
<script>
setInterval(function(){
var myDate = new Date();
var x=myDate.getFullYear()+"年"+myDate.getMonth()+"月"+myDate.getDate()+"日 "+myDate.getHours()+"点"+myDate.getMinutes()+"分"+myDate.getSeconds()+"秒";
document.getElementById("x"). innerHTML=x;
},1000);
</script>
</body>
</html>
引用yfcp的回答:
<html xmlns="http://www.w3.org/1999/xhtml"><head><title></title><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><style>.a{background:red;width:350px;height:80px;color:#ffffff;font-size:13px;line-height:80px;text-align:center}</style></head><body><div class="a" id=x></div><script>setInterval(function(){var myDate = new Date();var x=myDate.getFullYear()+"年"+myDate.getMonth()+"月"+myDate.getDate()+"日 "+myDate.getHours()+"点"+myDate.getMinutes()+"分"+myDate.getSeconds()+"秒";document.getElementById("x"). innerHTML=x;},1000); </script></body></html>
<html xmlns="http://www.w3.org/1999/xhtml"><head><title></title><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><style>.a{background:red;width:350px;height:80px;color:#ffffff;font-size:13px;line-height:80px;text-align:center}</style></head><body><div class="a" id=x></div><script>setInterval(function(){var myDate = new Date();var x=myDate.getFullYear()+"年"+myDate.getMonth()+"月"+myDate.getDate()+"日 "+myDate.getHours()+"点"+myDate.getMinutes()+"分"+myDate.getSeconds()+"秒";document.getElementById("x"). innerHTML=x;},1000); </script></body></html>
展开全部
月份要加一
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询