jquery 技巧

單純 用 Jquery 定Timer

 $(function () {  //document ready 函數
          setTimeout(timerFunc, 200, $("#tita")); //啟動 timerLive
        });
 var pp = 0;
        function timerFunc(jqObj) {
            pp++;
            jqObj.text(pp);
            setTimeout(timerFunc, 200, jqObj);//再啟動
        }

留言

熱門文章