标题在网页中实现每日更新的中文日期
栏目网络与通信
作者熊震宇
发布2001年2期
大家在网页中往往看到的是阿拉伯数字的日期如:2000年11月8日,如何在网页中实现真正的中文日期:“公元二○○○年十一月九日”,经过一段时间的摸索,总结出以下代码,愿与读者共享:
<html>
<head>
<title>中文日期</title>
</head>
<body>
<script language=“JavaScript”>
function number(index1){
var numberstring=“一二三四五六七八九十”
if(index1==0){document.write(“十”)
if(index1<10){
document.write(numberstring.substring(0+(index1-1),index1))}
else if(index1 < 20 ){
document.write(“十”+numberstring.substring(0+(index1-11),(index1-10)))}
else if(index1 < 30 ){
document.write(“二十”+numberstring.substring(0+(index1-21),(index1-20)))} else{
document.write(“三十”+numberstring.substring(0+(index1-31),(index1-30)))} }
var today1 = new Date()
var month = today1.getMonth()+1
var date = today1.getDate()
var day = today1.getDay()
document.write(“<br><strong><small><center>”)
document.write(“公元二○○○年”)
number(month)
document.write(“月”)
number(date)
document.write(“日</small>vcenter>”)
</script>
</body>
</html>