我也不知道该怎么解决,我在这里求你们了,这也许对你们来说轻而易举。 这样就真的不用了 有问题就问 我也不是高手 真的 我从来没有说买本书学过javascript 我到是真的买了书学过asp 很多东西我都是在网络上学的 你要知道的代码如下 [CODE]<html> <head> <title>年月表单2</title> <script language="JavaScript"> var now = new Date(); var sj; var ny; function mytime() { sj = now.getHours() + ":" + now.getMinutes() + ":" + now.getSeconds(); alert(sj); } function mydate() { ny = ( now.getMonth() + 1 ) + "/" + (now.getDate() +1) + "/" + (now.getYear()) ; alert(ny); } </script> </head> <body> <form> <input type="button" value="时间" OnClick="mytime()"> <input type="button" value="年月" OnClick="mydate()"> </form> </body> </html>[/CODE]