javascript,实现一个时钟,页面显示当前时间包括年月日时 分 秒 并设定一个时间点,当该

间点到的时候,在页面中显示一段文字,以提醒用户... 间点到的时候,在页面中显示一段文字,以提醒用户 展开
 我来答
yyzloveglq
2014-06-25 · TA获得超过129个赞
知道答主
回答量:93
采纳率:0%
帮助的人:88.8万
展开全部
<html>
<head>
<title>Time</title>
</head>
<body>
<div id="time"></div>
<div id="alert"></div>
</body>
<script type="text/javascript" charset="utf-8" async defer>
var time = document.getElementById("time");
showTime();
function showTime() {
// To get the date time
var date = new Date();
var year = date.getYear() + 1900;
var month = date.getMonth() + 1;
var day = date.getDate();
var hour = date.getHours();
var min = date.getMinutes();
var sec = date.getSeconds();
var date_time = year + "-" + month + "-" + day + " " + hour + ":" + min + ":" + sec;
time.innerHTML = date_time;

// when the time is equal your condition, show the special words.
if(date_time == "2014-6-25 11:45:20") {
document.getElementById("alert").innerHTML = "It's time to display your words here.";
}
}
// set the interval time
setInterval(showTime, 1000);
</script>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式