js,ajax,php打造进度条
- 2011-11-15 09:45 - fzblog.net
- Views: 166
- Comments: 0
- php
js,ajax,php打造进度条实例: var progress = 0;var total = 50;var end = 0;var timer = null;function run(){ end = parseInt($("#progress-bar").width());go = end / total;timer = setInterval("my_progress()",100);}function my_progress(){progress += go;if(progress
......
......


