爱你一生剧情分集介绍:网页程序,出错啦,高手帮帮帮

来源:百度文库 编辑:神马品牌网 时间:2024/05/15 20:51:32
<html>
<body>
<script language="javascript">
<!--
tmpdate=new date();
date=tmpdate.getdate();
month=tmpdate.getmonth()+1;
year=tmpdate.getyear();
document.write(year);
document.write("年");
document.write(month);
document.write("月");
document.write(date);
document.write("日");
//-->
</script>
</body>
</html>
错在哪?

new date();
要这样写 new Date();
同样 getdate() 要写成 getDate()

同上