function getProgressBar(){
var timestamp = (new Date()).valueOf();
var bytesReadToShow = 0;
var contentLengthToShow = 0;
var bytesReadGtMB = 0;
var contentLengthGtMB = 0;
$.ajax({
'url':'media/progressSevletAction',
'async':true,// 异步改成true
'cache':false,
'type':'post',
'dataType':'json',
'success':function(status){
var bytesRead=(status.pBytesRead/1024).toString();
alert(bytesRead)
if(bytesRead>1024){
bytesReadToShow=(bytesRead/1024).toString();
bytesReadGtMB=1;
}else{
bytesReadToShow=bytesRead.toString();
}
var contentLength=(status.pContentLength/1024);
if(contentLength>1024){
contentLengthToShow=(contentLength/1024).toString();
contentLengthGtMB=1;
}else{
contentLengthToShow=(contentLength/1024).toString();
}
$('#test').html(contentLengthToShow);
$('#test1').html(bytesReadToShow);}
});