「testpage」の版間の差分

提供: Eospedia
移動: 案内検索
行3: 行3:
  
  
<script>
+
[localhost:/EosJ/date.js]
 
+
var hiduke=new Date();
+
 
+
var year = hiduke.getFullYear();
+
var month = hiduke.getMonth()+1;
+
var week = hiduke.getDay();
+
var day = hiduke.getDate();
+
 
+
var yobi= new Array("日","月","火","水","木","金","土");
+
 
+
document.write("西暦"+year+"年"+month+"月"+day+"日 "+yobi[week]+"曜日");
+
 
+
</script>
+

2014年5月29日 (木) 09:08時点における版

様々なテストを行っている頁です。 内容には意味がありません。


[localhost:/EosJ/date.js]