我在 JSP 文件中有一个 iFrame 来显示 PDF 文件,因为我将此页面包含在另一个 JSP 文件中并尝试显示相同的内容。它在 Firefox 中运行良好,但在 Chrome 和 IE 中运行良好。在这里,我附上了脚本和 html 内容。
脚本 :
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;" />