現在日期
- Internet Explorer 6.0
- Internet Explorer 7.0
- Internet Explorer 8.0
- Mozilla Firefox 2.0
- Mozilla Firefox 3.0
- Google Chrome
- Safari 3.1
- Opera 9.5
- 現在日期 - 以文字形式顯示年、月、日。
- 語法總長度:483 字元
<script type="text/javascript"><!--
var yudan = "";
var now = new Date();
var month = now.getMonth() + 1;
var date = now.getDate();
var year = now.getYear();
if (year < 2000) year = year + 1900;
if (month >= 3 && month <= 4) yudan = "春季 ";
if (month >= 5 && month <= 8) yudan = "夏季 ";
if (month >= 9 && month <= 10) yudan = "秋季 ";
if (month >= 11 || month <= 2) yudan = "冬季 ";
document.write(year + " 年 " + yudan + month + " 月 " + date + " 日 ");
// --></script>
- 可將第 12 行的中文字改成其他文字。
- 不想顯示季節的話可將第 8 至 11 行刪除