Choco Tutorial. ♀♂
♪ Post 帖子 ♪ Me 博主 ♪ Tutorial 教程 ♪ Item 素材 ♪ Links 链接
Choco Tutorial. ♪♪
风那么大,把我吹醒了。风那么大,把梦中的你也吹散了。风那么大,也把我的心吹凉了。


注意注意 :

初次来到的朋友
不知道我的教程方法在哪里?

请别抄袭我部落格里任何东西
转载教程素材请贴上本博客链接









12.29.2011 | 0 comment



就像上图那样的效果 xP



代码:
<center><form name="myform">
<td valign="top" width="135">
<input value="在线时间" name="clock" size="8"/></td>
</form>
<script language="JavaScript">
var id, iM = 0, iS = 1;
start = new Date();
function go()
{
now = new Date();
time = (now.getTime() - start.getTime()) / 1000;
time = Math.floor( time);
iS = time % 60;
iM = Math.floor( time / 60);
if ( iS < 10)
document.myform.clock.value = " " + iM + " 分 0" + iS + " 秒 ";
else
document.myform.clock.value = " " + iM + " 分 " + iS + " 秒 ";
id = setTimeout( "go()", 1000);
}
go();
</script></center>
help me click nuffnang , thx ♥

Older Post | Newer Post