文章浏览 复制本页面地址

JS 动态时间展示

1.  中文格式时间这展示

<span class="STYLE1" id="linkweb"></span>

<script>setInterval("linkweb.innerHTML=new Date().toLocaleString()+''.charAt(new Date().getDay());",1000);</script>

 

2.英文js 时间展示

<head>

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
dayName = new Array("", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun")
monName = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
now = new Date
//  End -->
</script>

</head>

 

<script language="javascript">

var strDay;
if ((now.getDate() == 1) || (now.getDate() != 11) && (now.getDate() % 10 == 1))   // Correction for 11th and 1st/21st/31st
 strDay = "st ";
else if ((now.getDate() == 2) || (now.getDate() != 12) && (now.getDate() % 10 == 2))  // Correction for 12th and 2nd/22nd/32nd
 strDay = "nd ";
else if ((now.getDate() == 3) || (now.getDate() != 13) && (now.getDate() % 10 == 3))  // Correction for 13th and 3rd/23rd/33rd
 strDay = "rd ";
else
 strDay = "th ";
document.write(
dayName[now.getDay()]
+
" the "
+
now.getDate()
+
strDay
+
"of "
+
monName[now.getMonth()]
+
", "
+
now.getFullYear()
)
//  End -->
</script>

标签:
上一篇:
下一篇: