JavaScript实例集

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

JavaScriptJavaScriptJavaScriptJavaScript实例集日期星期的显示日期星期的显示日期星期的显示日期星期的显示这段程序放在body与/body之间!--todayDate=newDate();date=todayDate.getDate();month=todayDate.getMonth()+1;//月份是从0开始的year=todayDate.getYear();document.write(今天是)document.write(br)if(navigator.appName==Netscape){document.write(1900+year);document.write(年);document.write(month);document.write(月);document.write(date);document.write(日);document.write(br)}if(navigator.appVersion.indexOf(MSIE)!=-1){document.write(year);document.write(年);document.write(month);document.write(月);document.write(date);document.write(日);document.write(br)}if(todayDate.getDay()==5)document.write(星期五)if(todayDate.getDay()==6)document.write(星期六)if(todayDate.getDay()==0)document.write(星期日)if(todayDate.getDay()==1)document.write(星期一)if(todayDate.getDay()==2)document.write(星期二)if(todayDate.getDay()==3)document.write(星期三)if(todayDate.getDay()==4)document.write(星期四)//--动态数字时钟动态数字时钟动态数字时钟动态数字时钟1111这段程序放在body与/body之间scriptlanguage=JavaScript!--functionTime(){/*由于IE与Netscape对JavaScript的解释不同,造成浏览的效果不同,所以要分别写代码。判断一下用户所使用的浏览器,如果两者都不是,就返回。*/if(!document.layers&&!document.all)returnvarTimer=newDate()varhours=Timer.getHours()varminutes=Timer.getMinutes()varseconds=Timer.getSeconds()varnoon=AMif(hours12){noon=PMhours=hours-12}if(hours==0)hours=12if(minutes=9)minutes=0+minutesif(seconds=9)seconds=0+seconds//changefontsizeheretoyourdesiremyclock=fontsize='4'face='Arial'color=blue+hours+:+minutes+:+seconds++noon+/b/fontif(document.layers){//浏览器是Netscapedocument.layers.position.document.write(myclock)document.layers.position.document.close()}elseif(document.all)position.innerHTML=myclocksetTimeout(Time(),1000)//每1000毫秒,调用一次Time函数,即一秒动一次。}//--/scriptspanid=positionstyle=position:absolute;left:441px;top:190px;width:128px;height:30px/span动态动态动态动态数字时钟数字时钟数字时钟数字时钟2222这段程序放在head与/head之间scriptlanguage=javascript!--vardnc1=newImage();c1.src=img/c1.gifc2=newImage();c2.src=img/c2.gifc3=newImage();c3.src=img/c3.gifc4=newImage();c4.src=img/c4.gifc5=newImage();c5.src=img/c5.gifc6=newImage();c6.src=img/c6.gifc7=newImage();c7.src=img/c7.gifc8=newImage();c8.src=img/c8.gifc9=newImage();c9.src=img/c9.gifc0=newImage();c0.src=img/c0.gifcb=newImage();cb.src=img/cb.gifcam=newImage();cam.src=img/cam.gifcpm=newImage();cpm.src=img/cpm.giffunctionextract(h,m,s,type){if(!document.images)//如果当前窗口不存在images对象,就返回。returnif(h=9){//当h9时,就在小时前输出一个黑背景,再输出ch.src图。document.images.a.src=cb.srcdocument.images.b.src=eval(c+h+.src)}else{document.images.a.src=eval(c+Math.floor(h/10)+.src)document.images.b.src=eval(c+(h%10)+.src)}if(m=9){//当m=9时,就在分钟前输出一个0,再输出cm.src图。document.images.d.src=c0.srcdocument.images.e.src=eval(c+m+.src)}else{document.images.d.src=eval(c+Math.floor(m/10)+.src)document.images.e.src=eval(c+(m%10)+.src)}if(s=9){document.g.src=c0.srcdocument.images.h.src=eval(c+s+.src)}else{document.images.g.src=eval(c+Math.floor(s/10)+.src)document.images.h.src=eval(c+(s%10)+.src)}if(dn==AM)document.j.src=cam.srcelsedocument.images.j.src=cpm.src}functionshow(){if(!document.images)returnvarDigital=newDate()varhours=Digital.getHours()varminutes=Digital.getMinutes()varseconds=Digital.getSeconds()dn=AMif((hours=12)&&(minutes=1)||(hours=13)){dn=PMhours=hours-12}if(hours==0)hours=12extract(hours,minutes,seconds,dn)setTimeout(show(),1000)//1秒调用一次show函数。}//--/script这段程序放在body****正文中onLoad=show()这段程序放在body与/body之间imgsrc=cb.gifname=aimgsrc=cb.gifname=bimgsrc=colon.gifname=cimgsrc=cb.gifname=dimgsrc=cb.gifname=eimgsrc=colon.gifname=fimgsrc=cb.gifname=gimgsrc=cb.gifname=himgsrc=cam.gifname=j辨别浏览器辨别浏览器辨别浏览器辨别浏览器这段程序放在body与/body之间//navigater是浏览器对象,appName是提供字符串形式的浏览器名称,appVersion是反映浏览器的版本号。scriptlanguage=JavaScript!--document.write(CENTER您的浏览器是:+navigator.appName++navigator.appVersion+CENTER)//--/script分时问候分时问候分时问候分时问候这段程序放在body与/body之间scriptlanguage=JavaScript!--varmess1=;document.write(centerfontcolor='#0000FF'size=4b)day=newDate()hr=day.getHours()if((hr=0)&&(hr=4))mess1=深夜了,注意身体,该休息了!if((hr=4)&&(hr7))mess1=清晨好,这麽早就上网呀?!if((hr=7)&&(hr12))mess1=早上好,一天之际在于晨,又是美好的一天!if((hr=12)&&(hr=13))mess1=该吃午饭啦!有什麽好吃的?if((hr=13)&&(hr=17))mess1=外面的天气很热吧?!心静自然凉!if((hr=17)&&(hr=18))mess1=太阳落山了!快看看夕阳吧!if((hr=18)&&(hr=19))mess1=吃过晚饭了吗?if((hr=19)&&(hr=23))mess1=一天过的可真快!今天过的好吗?document.write(mess1)document.write(/b/font/center)//---/script离开时显示停留时间离开时显示停留时间离开时显示停留时间离开时显示停留时间这段程序放在body与/body之间scriptlanguage=Javascript!--pageOpen=newDate();functionstay(){pageClose=newDate();minutes=(pageClose.getMinutes()-pageOpen.getMinutes());seconds=(pageClose.getSeconds()-pageOpen.getSeconds());time=(seconds+(minutes*60));time=(time+秒钟);//alert()是JavaScript的窗口对象方法,其功能是弹出一个具有OK对话框并显示()中的字符串,告诉在此页面停留的时间。alert('您在这儿停留了'+time+'.欢迎下次再来!');}//--/script这段程序放在body****正文中onUnload=stay()//页面卸载的时候,调用stay()函数。显示最后修改日期显示最后修改日期显示最后修改日期显示最后修改日期这段程序放在body与/body之间scriptlanguage=JavaScript!--hidescriptfromoldbrowsersfunctionmodified(){document.form1.textfiel

1 / 49
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功