1
我有一個JSP文件中的iFrame來顯示PDF文件,因爲我將此頁面包含在另一個JSP文件中並嘗試顯示相同的文件。它在Firefox中正常工作,但在Chrome和IE中無法正常工作。這裏通過我附加了腳本和html內容。iFrame瀏覽器問題,同時在另一個JSP文件中包含一個JSP文件
腳本:
function displayAttachmentInIframe(attachmentPath)
{
var iframeElementId = '#employeeDetailsAttachmentDisplayIFrame';
var iframeElementStyleClass = 'margin-top: 0px; width: 600px; height: 400px;
border:0px; overflow-x: hidden;';
jQuery(iframeElementId).attr('src', attachmentPath);
jQuery(iframeElementId).attr('style', iframeElementStyleClass);
}
HTML代碼:
<iframe id="employeeDetailsAttachmentDisplayIFrame"/>
<h:graphicImage id="employeeDetailsAttachmentImage"
url="#{EmployeeDetails.attachedFilePath}"
alt="Attachment Not Found"
style="width: 580px; height: 400px;" />