求一段代码javascript 或JS代码 显示 今天 是几年几月星期几 我们已经认识几天了
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求一段代码javascript 或JS代码 显示 今天 是几年几月星期几 我们已经认识几天了相关的知识,希望对你有一定的参考价值。
求一段代码javascript 或JS代码
显示 今天 是几年几月星期几 我们已经认识几天了
例如 今天是2011年5月24日 我们已经认识152天了
万分感谢!
我们是2011年1月10日 认识的 yylongren 的回答 我不知道怎么加到我的网页之中 能在细化一些吗 ,菜鸟哦 呵呵 谢谢啦
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> 参考技术A 1.首先获得时间:2011年1月10日
2.再次获得当前时间:2011年5月24日
3.计算时间差
不就得了。。。。 参考技术B 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>
我们认识 几天 加一个 倒计时的功能 就行 参考技术C <!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> 参考技术D 问这个问题的人至少会知道怎么用,还不快去学再来
求一段VBS压缩RAR或ZIP代码
求一段VBS压缩RAR或ZIP代码,我想将一个文件夹里面的所以内容利用VBS压缩成ZIP或RAR,然后利用日期时间命名。
一楼的代码好像运行不了,
错误:
行9 字符5 缺少对象“ws”
一个批处理就行了 参考技术B 批处理是可以很简单做到的 参考技术C BackUpFile("D:\Data")
Function BackUpFile(lstg_folder_name)
Dim fso, f, f1,fc,s,folder
Set fso=CreateObject("Scripting.FileSystemObject")
folder=fso.getfolder(ws.currentdirectory)
Set f=fso.GetFolder(lstg_folder_name)
Set fc=f.files
For Each f1 in fc
dim lf
lf=lstg_folder_name& "\" & f1.name
RarFile lf
Next
End Function
Function RarBackupFile(lastg_file_name)
Dim WshShell
Set WshShell = CreateObject("WScript.Shell")
Set fso=CreateObject("Scripting.FileSystemObject")
folder=fso.getfolder(WshShell.currentdirectory)
RarComponent =folder&"\RarComponent\rar.exe" rem 写rar具体地址
SourceFile = lastg_file_name
TargetFile = "D:\data\test.rar"
WshShell.Run RarComponent&" a -ep1 "&TargetFile&" "&SourceFile,0
End Function
以上是关于求一段代码javascript 或JS代码 显示 今天 是几年几月星期几 我们已经认识几天了的主要内容,如果未能解决你的问题,请参考以下文章
求一段 广告固定在网页右下角的代码(CSS或JS都行),谢谢!!