加入收藏-方便您以后查找网页特效哦
你的位置:
主页
>>
时间日期
INPUT框中,鼠标放上去变换日期和时间
鼠标放上去变成时间显示
把<body>中的内容改为:
<body onLoad="return printDate()">
把如下代码加入<body>区域
<SCRIPT LANGUAGE="JavaScript"> <!-- Begin function printDate() { var today = new Date(); var day=today.getDate(); var month = today.getMonth() + 1; var year = today.getFullYear().toString(); var box=document.forms[0].DateBox;//this is where we want to print the date if ( ( month /10 ) < 1 ) { month=("0" + month).toString(); //add the leading 0 -- looks more professional } if ( (day/10)<1) { day=("0" + today.getDate()).toString();//add the leading 0 -- looks better } box.value=month + "-" + day + "-" + year; } function printTime() { var box = document.forms[0].DateBox; //this is where we want to print the date var thetime=new Date(); if (thetime.getMinutes() / 10 <1 ) { box.value=thetime.getHours() + ":" + "0" + thetime.getMinutes(); } else { box.value=thetime.getHours() + ":" + thetime.getMinutes(); } } // End --> </script> <form name="stats"> <input type="text" readonly="readonly" name="DateBox" size="10" onmouseover="printTime();" onmouseout="printDate();"> <br> <font size="2">鼠标放上去变成时间显示</font> </input> </form>
COPYRIGHT © 2003-2005 ALL RIGHTS RESERVED
业务联系
|
广告服务
|
网站建设
|
关于我们
|
免责声明
月光宝盒工作室
800*600