1

我在 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;" />
4

1 回答 1

0

chrome和中,除非用户确认,否则IE您不能直接在页面http://内加载内容。https://确保您有您的网址的SSL证书。https://您可以在 中检查错误chrome console

于 2013-06-28T06:06:03.100 回答