我在AJAX
同步請求中使用jQuery進度條。 Progressbar在FireFox中運行良好,但IE8始終顯示100%。jQuery ProgressBar和IE8
這是我的代碼:
var selectRows = $('#rowed3').getGridParam('selarrrow');
$.each(selectRows,function (index,id) {
$.ajax({
url:'addSign',
success: function (result) {
$("#progressbar").progressbar('option','value',currPercent);
},
async:false,
data:{
'id':id,
'details':sign
},
type:'post'
});
當我
$("#progressbar").progressbar('option','value',currPercent);
我看到進度條更改其狀態之前添加
alert('111')
。
爲什麼在IE中不起作用?
對不起,但我跳過了一段代碼。我認爲這很重要。
打開IE8s控制檯(F12)並在這裏發佈錯誤消息 –