コンピュータやネットワークでは、さまざまな方法で時刻と日付が表示されます。コンピュータの電源を入れると、Web ページを開いた時刻と現在時刻も表示されます。実際、これは非常に簡単で、JavaScript スクリプト言語を使用してそのような効果を簡単に作成できます。 Web ページ制作において、さまざまな形式の時刻と日付の特殊効果コードは次のとおりです。
ここに引用があります:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<頭>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<TITLE>エミュの日付の単純な日付フォーマッタ</TITLE>
<META NAME="ジェネレーター" CONTENT="EditPlus">
<META NAME="作者" CONTENT="emu">
<META NAME="キーワード" CONTENT="日付フォーマッタ形式エミュ">
<META NAME="説明" CONTENT="日付オブジェクトを文字列にフォーマットする関数">
</HEAD>
<本体>
<スクリプト言語="JavaScript">
<!--
Date.prototype.format = 関数 (形式){
if (format == null) format = "yyyy/MM/dd HH:mm:ss.SSS";
var year = this.getFull Year();
var month = this.getMonth();
var sMonth = ["1月"、"2月"、"3月"、"4月"、"5月"、"6月"、"7月"、"8月"、"9月"、"10月"、"11月"、"12月" "][月];
var date = this.getDate();
var day = this.getDay();
var hr = this.getHours();
var min = this.getMinutes();
var sec = this.getSeconds();
var daysIn Year = Math.ceil((この新しい日付(年,0,0))/86400000);
var 週年 = Math.ceil((年年日+新しい日付(年,0,1).getDay())/7);
var weekInMonth = Math.ceil((date+new Date(年,月,1).getDay())/7);
return format.replace("yyyy",year).replace("yy",year.toString().substr(2)).replace("dd",(date<10?"0":"")+date ).replace("HH",(hr<10?"0":"")+hr).replace("KK",(hr%12<10?"0":"")+hr%12)。 replace("kk",(hr>0&&hr<10?"0":"")+(((hr+23)%24)+1)).replace("hh",(hr>0&&hr<10|| hr>12&&hr<22?"0":"")+(((hr+11)%12)+1)).replace("mm",(min<10?"0":"")+min) .replace("ss",(sec<10?"0":"")+sec).replace("SSS",this%1000).replace("a",(hr<12?"AM":") PM")).replace("W",weekInMonth).replace("F",Math.ceil(date/7)).replace(/E/g,["日曜日","月曜日","火曜日", "水曜日","木曜日","金曜日","土曜日"][日]).replace("D",daysIn Year).replace("w",weekIn Year).replace(/MMMM+/,sMonth).replace( "MMM",sMonth.substring(0,3)).replace("MM",(month<9?"0":"")+(month+1));
}
var d = 新しい日付();
alert(d.format());//デフォルトのフォーマット
アラート(d.format("MM-dd-yyyy"));
アラート(d.format("dd/MM/yy"));
alert(d.format("dd\MM\yyyy HH:mm ss.SSS"));
alert(d.format("yyyy年MM月dd日HH時mm分ss.SSS秒"));
alert(d.format("yyyy年MM月dd日EHH(0~23)時mm分ss.SSS秒"));
alert(d.format("yyyy年MM月dd日EKK(0~11)時mm分ss.SSS秒a"));
alert(d.format("yyyy年MM月dd日Ehh(1~12)時mm分ss.SSS秒a"));
alert(d.format("yyyy 年 MM 月 dd 日 E kk (1~24) 時 mm 分 ss.SSS 秒 今年の D 日、第 w 週、MMMM 今月の W 週、MMM 第 W 週今月の F E"));
//-->
</スクリプト>
</BODY>
</HTML>
以下は純粋な中国語で表示される時刻と日付です。
ここに引用があります:
<スクリプト言語="JavaScript">
<!--
String.prototype.toCHS=function(){return this.replace(/d/g, function(a){return "ゼロ 1 2 3 4 5 6 7 8 9".charAt(parseInt(a))}); }
Number.prototype.toCHS=function(){return((this>19?Math.floor(this/10):"")+(this>9?("十"):"")+(this%10= =0&&this>0?"":this%10)).toCHS();}
Date.prototype.toCHS=function(){
with(this)return(getFullyear()+"").toCHS()+"年"+(getMonth()+1).toCHS()+"月"+getDate().toCHS()+"日"+ getHours().toCHS()+"時間"+getMinutes().toCHS()+"分"+getSeconds().toCHS()+"秒";
}
アラート(新しい日付().toCHS());
//-->
</スクリプト>