Extjs 进度条

function extjsProgress(){
	Ext.MessageBox.show({
		title:'正在初始化,请稍后……',
		msg:'',
		progressText:'',
		width:'200',
		progress:true,
		closable:false
	});
	  var f=function(v){
		  return function(){
			  if (v==12) Ext.MessageBox.hide();
			  else{
			    var i=v/11;
			    Ext.MessageBox.updateProgress(i,'',Math.round(100*i)+'%已完成');
			  }
		  }
	  };
	  for(var i=1;i<13;i++)  
		{  
		setTimeout(f(i),i*1000);  
		} 

你可能感兴趣的:(Extjs 进度条)