それはIEの問題です。私は解決策として以下を使用しています。
function dodisable() {
var b1=document.getElementById('B1');
b1.value='Please Wait....';
b1.disabled=true;
document.getElementById("browse").src = "hhhh.pdf"; /*LINK TO YOUR PDF*/
setTimeout( URLoader_Timeout, 100);
}
function doenable() {
var b1=document.getElementById('B1');
b1.value='Submit';
b1.disabled=false;
}
function URLoader_Timeout() {
if ( document.getElementById("browse").readyState == "complete")
doenable();
else
setTimeout( URLoader_Timeout ,100);
}
HTML
<input type="button" name="B1" id="B1" value="Go" onclick="dodisable();" />
<iframe id="browse" onload="return doenable();" style="width:100%;height:100%"></iframe>