Board logo

标题: 请各位大哥帮小弟一个小忙 [打印本页]

作者: 饥喝    时间: 2005-4-8 11:26     标题: 请各位大哥帮小弟一个小忙

请指教一下这些代码那有问题怎么总是提示"缺少对象" 代码如下:head> <title>年月表单2</title> <script language="JavaScript"> var the_day = new date(); var sj; var ny;

function mytime(){ sj = the_day.getHours()+':'+the_day.getMinutes()+':'the_day.getSeconds(); alert(sj);

} function mydate(){ ny = (the_day.getmonth()+1)+'/'+(the_day.getdate()+1)+'/'+(1900+the_day.getyear());

alert(ny)

} </script> </head> <body> <form> <input type="button" value="时间" Onclick="mytime()"> <input type="button" value="年月" Onclick="mydate()"> </form> </body> </html> 请各位大哥尽快回复一下


作者: bingxue2332    时间: 2005-4-8 11:55

[CODE]

<title>年月表单2</title> <script language="JavaScript"> var the_day = new Date(); var sj; var ny;

function mytime(){ sj = the_day.getHours() + ":" + the_day.getMinutes() + ":" + the_day.getSeconds();

alert(sj);

} function mydate(){ ny = ( the_day.getMonth() + 1 )+ "/" +( the_day.getDate() + 1 )+ "/" +(1900 +

the_day.getYear());

alert(ny)

} </script> </head> <body> <form> <input type="button" value="时间" Onclick="mytime()"> <input type="button" value="年月" Onclick="mydate()"> </form> </body> </html>

[/CODE]
作者: suyongtao    时间: 2005-4-8 18:09

高手,,呵呵,,
作者: Kyo    时间: 2005-4-8 18:47

厉害。。。我借来抄抄。。。
作者: 饥喝    时间: 2005-4-11 09:17

小弟加倍感谢,这个网站太好了。会集天下编程高手。
作者: suyongtao    时间: 2005-4-11 10:24

高手不是很多,但是这个论坛的高手都很热心,人气很旺,这个无论哪个论坛都不能比的...
作者: bingxue2332    时间: 2005-4-11 13:24

你是不要让我惭愧死掉了


这些都很简单的

真正让我敢拿出来 show 的是我现在学习的MFC

你们慢慢学啊
作者: 冰水    时间: 2005-4-12 13:10

那个"年月日"时间求的是错的
作者: bingxue2332    时间: 2005-4-12 17:20

我不知道他为什么要在那里加了个 1900

结果就是那样了

呵呵
作者: fjfj1212    时间: 2005-9-26 16:37

[CODE]&lt;script language="JavaScript"&gt;
var the_date=new Date()
var the_year=the_date.getFullYear()
var the_month=the_date.getMonth()+1
var the_day=the_date.getDate()
window.alert(the_year+"年"+the_month+"月"+the_day+"日")
&lt;/script&gt;[/CODE]
我是用记事本写的,不知道是不是这个意思啊!!!
你可以将window.alert改成document.write





欢迎光临 编程论坛 (https://bbs.bc-cn.net/) Powered by Discuz! 6.1.0