我想显示 webpath 中提供的报告(pdf)假设(http://myservre/reports/myrepoft.pdf)
。目前,它正在像这样通过 IFrame 显示。
strReportPDFFile = "`http://myservre/reports/myrepoft.pdf`"
<IFRAME frameborder="1" onload="onchangestate()" src="" id="ifrmShowReport" frameborder="0" height="100%" width="100%" marginwidth="0" align="top" style="overflow: none;overflow-x: auto;display:none"></IFRAME>
document.getElementById("formContainer").style.display = "block";
document.getElementById("ifrmShowReport").style.display = "block";
document.getElementById("ifrmShowReport").src = strReportPDFFile;
URL 显示在我想隐藏 URL 的地址栏中。是否可以 ?如果没有,请提出一些更好的选择。