我想顯示網絡路徑中可用的報告(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的地址欄中。可能嗎 ?如果沒有,請提出一些更好的選擇。
我想這取決於*爲什麼*你想隱藏它嗎? – Blachshma
什麼?那麼沒有人能偷走它?即使將它隱藏在iframe中,也很容易發現。瀏覽器必須具有* some * URL才能獲取文檔 –
我的客戶說這是潛在的主題。所以我們要隱藏它 – Smaug