参考一下:<script>   
var   meeting_count   =   null;   //new   CountDown(1,10,document.getElementById('clock'));   
var count   =   new   Array();   
count[0]   =   meeting_count;   
    
function   callLater(fRef,argu)     
{   
return   (
function()   
{   
fRef(argu);   
}
);   
}   
    
function   CountDown(min,sec,obj)   //初始化分/秒/显示标记
{   
this.timerID   =   null;   
this.timerRunning   =   false;   
this.minutes   =   min;   
this.seconds   =   sec;   
this.shower   =   obj;   
}  
 
  CountDown.prototype.setTime=   
  function(time_num)   //转化成分/秒
  {   
var   num   =   parseInt(time_num);   
this.minutes   =   parseInt(num/60);   //得到分钟数
this.seconds   =   num%60;   //得到秒数
  }   
    
  function   StopTimer(obj)   
  {   
    
  if(obj.timerRunning   &&   obj.timerID!=null)   
    clearTimeout(obj.timerID);   
obj.timerRunning   =   false;   
  }   
    
  function   StartTimer(obj)   
  {   
if(obj.seconds<0)   
{   
obj.minutes=obj.minutes-1;   
obj.seconds=59;   
}   
    var   timeValue   =   "";   
    timeValue   +=   ((obj.minutes   <   10)   ?   "0"   :   "")   +   obj.minutes;   
    timeValue   +=   ((obj.seconds   <   10)   ?   ":0"   :   ":")   +   obj.seconds;   
    obj.shower.innerHTML   =   "<nobr>&nbsp;"+timeValue+"<nobr>";   
    obj.seconds=obj.seconds-1;   
    obj.timerRunning   =   true;   
    
if(obj.minutes==0   &&   obj.seconds<0)   
obj.shower.innerHTML   =   "<font   color='red'>时间到!</font>"; 
else   
obj.timerID   =   setTimeout(callLater(StartTimer,   obj),1000);   
  }   
    
  function   init()   
  {   
meeting_count   =   new   CountDown(1,10,document.getElementById('clock'));   
//这个地方直接设置倒计时60秒的时间,你可以通过meeting_count.setTime(<%=RemainTime%>);来用 //服务器端的时间变量的值作为倒计时时间初始值   
meeting_count.setTime();           
  }   
    
  function   work(obj)   
  {   
if(meeting_count!=null)   
meeting_count.timerRunning?StopTimer(meeting_count):StartTimer(meeting_count);   
if(obj.value=="start")   
obj.value="stop";   
else   
obj.value="start";   
    
  }   
  </script>   
  <body   onload="init()">   
  <input   type="button"   value="start"   onclick="work(this)" ID="Button1" NAME="Button1">   
  <div   id="clock"></div>