最終更新日 :
<SCRIPT language="JavaScript">
<!--
var year, month, day;
var apn = navigator.appName;
var d = document.lastModified
if (apn == "Microsoft Internet Explorer") {
year = d.substr(6,4);
month = d.substr(0,2);
day = d.substr(3,2);
document.write(year," 年 ", month, " 月 ", day, " 日 ");
}
else if (apn == "Netscape"){
year = d.substr(11,4);
month = d.substr(7,3);
day = d.substr(4,2);
document.write(month," / ", day, " / ", year);
}
else {
document.write(d);
}
//-->
</SCRIPT> |