...或JS代码 显示 今天 是几年几月星期几 我们已经认识几天了_百度知...
发布网友
发布时间:2024-09-28 03:01
我来回答
共5个回答
热心网友
时间:2024-11-19 10:34
<script type="text/javascript">
var oldDate = new Date(2011,4,23,0,0,0);
var nowDate = new Date();
var week = "日,一,二,三,四,五,六".split(',');
var str = "今天是"+nowDate.getFullYear()+"年"+(nowDate.getMonth() + 1)+"月"+nowDate.getDate()+"日 星期"+week[nowDate.getDay()]+" 我们已经认识"+parseInt((nowDate.getTime() - oldDate.getTime())/ 86400000)+"天了";
document.write(str);
</script>
热心网友
时间:2024-11-19 10:35
<!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=gb2312" />
<title>JavaScript在线时钟,时间</title>
<script type="text/javascript">
function tim(){
var now=new Date; document.getElementById("timespan").innerHTML=now.getFullYear()+"年"+now.getMonth()+"月"+now.getDay()+"日 星期"+now.getDay()+" "+now.getHours()+":"+now.getMinutes()+":"+now.getSeconds()+" 我们已经认识"+Math.ceil((new Date()- new Date(2011,1,10))/86400000)+"天了";
var mm=setTimeout("tim()","1000");
}
</script>
</head>
<body onLoad="tim()">
今天是 <span id="timespan"></span>
</body>
</html>
热心网友
时间:2024-11-19 10:33
1.首先获得时间:2011年1月10日
2.再次获得当前时间:2011年5月24日
3.计算时间差
不就得了。。。。
热心网友
时间:2024-11-19 10:40
function Clock() {
var date = new Date();
this.year = date.getFullYear();
this.month = date.getMonth() + 1;
this.date = date.getDate();
this.day = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六")[date.getDay()];
this.hour = date.getHours() < 10 ? "0" + date.getHours() : date.getHours();
this.minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
this.second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();
this.toString = function() {
return "现在是:" + this.year + "年" + this.month + "月" + this.date + "日 " + this.hour + ":" + this.minute + ":" + this.second + " " + this.day;
};
this.toSimpleDate = function() {
return this.year + "-" + this.month + "-" + this.date;
};
this.toDetailDate = function() {
return this.year + "-" + this.month + "-" + this.date + " " + this.hour + ":" + this.minute + ":" + this.second;
};
this.display = function(ele) {
var clock = new Clock();
ele.innerHTML = clock.toString();
window.setTimeout(function() {clock.display(ele);}, 1000);
};
}
包含 此文件
<SCRIPT type=text/javascript>
var clock = new Clock();
clock.display(document.getElementById("clock"));
</SCRIPT>
我们认识 几天 加一个 倒计时的功能 就行
热心网友
时间:2024-11-19 10:39
问这个问题的人至少会知道怎么用,还不快去学再来