您好,欢迎访问三七文档
当前位置:首页 > 商业/管理/HR > 管理学资料 > jsp动态获取系统当前时间
方法一:htmlbodyonload=disptime();FORMNAME=myformDIValign=centerSCRIPTlanguage=JavaScript!--functiondisptime(){vartime=newDate();//获得当前时间varhour=time.getHours();//获得小时、分钟、秒varminute=time.getMinutes();varsecond=time.getSeconds();varapm=AM;//默认显示上午:AMif(hour12)//按12小时制显示{hour=hour-12;apm=PM;}if(minute10)//如果分钟只有1位,补0显示minute=0+minute;if(second10)//如果秒数只有1位,补0显示second=0+second;/*设置文本框的内容为当前时间*/document.myform.myclock.value=hour+:+minute+:+second++apm;/*设置定时器每隔1秒(1000毫秒),调用函数disptime()执行,刷新时钟显示*/varmyTime=setTimeout(disptime(),1000);//--/SCRIPTINPUTname=myclocktype=textvalue=size=15/body/html方法二:1.用服务器时间,配合ajax2.使用js的setInterval函数.简单代码测试.htmlbodyinputid=showTimereadnoly/scripttype=text/javascriptfunctiongetNowTime(){varnow=newDate();document.getElementById(showTime).value=now.getFullYear()+-+(now.getMonth()+1)+-+now.getDate();document.getElementById(showTime).value+=+now.getHours()+:+now.getMinutes()+:+now.getSeconds();}window.setInterval(getNowTime(),1000);/script/body/html
本文标题:jsp动态获取系统当前时间
链接地址:https://www.777doc.com/doc-2882185 .html