求一段代码javascript 或JS代码 显示 今天 是几年几月星期几 我们已经认识几天了
求一段代码javascript或JS代码显示今天是几年几月星期几我们已经认识几天了例如今天是2011年5月24日我们已经认识152天了万分感谢!我们是2011年1月10日...
求一段代码javascript 或JS代码
显示 今天 是几年几月星期几 我们已经认识几天了
例如 今天是2011年5月24日 我们已经认识152天了
万分感谢!
我们是2011年1月10日 认识的 yylongren 的回答 我不知道怎么加到我的网页之中 能在细化一些吗 ,菜鸟哦 呵呵 谢谢啦 展开
显示 今天 是几年几月星期几 我们已经认识几天了
例如 今天是2011年5月24日 我们已经认识152天了
万分感谢!
我们是2011年1月10日 认识的 yylongren 的回答 我不知道怎么加到我的网页之中 能在细化一些吗 ,菜鸟哦 呵呵 谢谢啦 展开
展开全部
<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>
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>
展开全部
1.首先获得时间:2011年1月10日
2.再次获得当前时间:2011年5月24日
3.计算时间差
不就得了。。。。
2.再次获得当前时间:2011年5月24日
3.计算时间差
不就得了。。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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>
我们认识 几天 加一个 倒计时的功能 就行
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>
我们认识 几天 加一个 倒计时的功能 就行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!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>
<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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
问这个问题的人至少会知道怎么用,还不快去学再来
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询