//呼叫執行自訂函數nowtime; nowtime(); //自訂函數nowtime function nowtime(){ var watch = new Date(); //取得目前的小時數及分鐘數來調整時針的旋轉角度 hours_mc.rotation = (watch.getHours()*30)+(watch.getMinutes()*0.5); //取得目前的分鐘數及秒數來調整分針的旋轉角度 minutes_mc.rotation = (watch.getMinutes()*6)+(watch.getSeconds()*0.1); //取得目前的秒數來計算調整的旋轉角度 seconds_mc.rotation = watch.getSeconds()*6; //設定定時物件myTimer,固定每1000毫秒執行nowtime函數一次更新時間資料 var myTimer=setTimeout(nowtime,1000); }