如何在iframe src中不显示正确的url

时间:2012-11-02 17:08:27

标签: html

我有以下代码。当我查看源代码时,它会在src中显示我的URL。我不希望它显示出来。没有在src中显示实际网址但仍在iframe中显示正确内容的任何技巧

 <ice:panelGroup id="Success">
                 <iframe src="#{reqStatus.pdfURL}" width="820" height="400" ></iframe> 
            </ice:panelGroup>

当我查看来源时,我可以看到这个我想“隐藏”它,如果你愿意的话。如果显示,那么任何人都可以猜出像1235.pdf,1236.pdf等数字。

<iframe height="400" src="http://myserver.com/MyApp/pdf/1234.pdf" width="820">

1 个答案:

答案 0 :(得分:0)

您可以通过javascript设置src属性,而不是在HTML中设置它。

请参阅: changing iframe source with jquery