进度条的打点

                    //add dynamic dot
                    interval = window.setInterval(function(){
                        var text = status.html();
                        if (text.length < 13){
                            status.html(text + '.');                    
                        } else {
                            status.html('Uploading');                
                        }
                    }, 200);
posted @ 2009-11-09 15:53  Kimura  Views(190)  Comments(0Edit  收藏  举报