自从爱上前端开始,一直在专注于CSS和HTML,但是由于本人天生愚钝,所以对于这些个已经十分简单的语言还是难以拿下,所以,耗费时间不说,起了个大早,赶了个晚集,什么都没留给我,在将这几个最简单的语言学个入门之后,这不是JavaScript也要开始进入日程了,无奈,还是天生愚钝,学了这么好几天了,才会写这么个小程序,记个笔记,为以后查阅方便,老鸟请不吝赐教啊。
在这个挨踢之路上,还望你们指教呢。
好了,上代码吧。粗糙,再次望指教。

<html>
<head>
<script type="text/javascript"> 
var ts=0;
function ShowTimes()
{ 
document.getElementById("times").value=ts; 
ts++; 
t=setTimeout(ShowTimes,1000); 
} 
function PauseTimes() 
{ 
clearTimeout(t); 
} 
function ResetTimes() 
{ 
document.getElementById("times").value=0;
ts=0;
} 
</script> 
</head>
<body> 
<button id="startcount" onclick="ShowTimes();">Starting</button>
<input type="text" id="times" />
<button id="stopcount" onclick="PauseTimes();">Pause</button>
<button id="clearcount" onclick="ResetTimes();">Reset</button>
</body> 
</html>

演示在这里: 点击这里

4 条评论

  • 自由人 2011/04/29 20:32 回复

    沙发之。。。现在对JS有种恐怖感,虽然也会点JS

  • 一米 2011/05/01 11:38 回复

    @自由人
    我这里沙发没什么抢的啊,嘿嘿,要转行做前端,JS必须的啊。

  • 三米 2011/07/12 17:03 回复

    看来我也要努力学js才行了。共勉!

  • 一米 2011/07/18 20:23 回复

    @三米
    嗯,慢慢来,大家一起学,哈哈。

  • :arrow:
  • :grin:
  • :???:
  • :cool:
  • :cry:
  • :shock:
  • :evil:
  • :!:
  • :idea:
  • :lol:
  • :mad:
  • :mrgreen:
  • :neutral:
  • :?:
  • :razz:
  • :oops:
  • :roll:
  • :sad:
  • :smile:
  • :eek:
  • :twisted:
  • :wink: