提交表单后,我有一个切换的JQuery进度条。它适用于FireFox,Chrome和IE 11,但它在IE 10中不起作用。它只显示一个灰色条。有任何建议让它进入IE 10吗?
JQuery的
//toggle visibility of status bar
$("#submitButton").click(function () {
if ($("#frm").valid()) {
var progBar = $("#progressbar").progressbar({value:false});
$(progBar).toggle();
}
});
CSS
<div id="progressbar" style="display:none">
</div>