我正在寻找建议/解决方法或更好的方法来做到这一点 这一点代码适用于 FF 和 chrome 但在 IE 中不会调用 hideProgress
function showPDF(url){
$("#divId")
.html('<div id="loading">Loading....</div>
<iframe id="modalIframeId" width="100%" height="100%"
src='+url+' marginWidth="0" marginHeight="0" frameBorder="0"
scrolling="auto" title="Dialog Title"
onload="hideProgress();">Your browser does not support</iframe>')
.dialog('open');
return ;
}
function hideProgress(){
$('#loading').hide();
}
谢谢你的帮助