PDF在Safari中隐藏了Jquery Modal

时间:2014-06-23 06:12:33

标签: javascript jquery css asp.net-mvc safari

这与我的this问题有关。在IE中,我在对话框中使用iframe解决了问题。所以它工作正常。但是在safari中我仍然面临着问题,尽管我已经将iframe带入了对话框。 Safari浏览器版本为 5.1.7(7534.57.2)

以下是我尝试的代码:

<div>
    <iframe allowtransparency="true" style="width :100%;height:68em" id="FaxPdf" src='@Url.Action("GetPDF", "Base", new { pdfPath = @Model.PDFPath })'></iframe>
</div>
<img id="addPatient" title="Add/Select Patient" src="~/Content/Images/AddNewSmall2.png" style="height:20px;width:20px;cursor:pointer;float:right" />
<div id="dialog" style="width: 100%; height: 100%; background-color: lightgray; display: none; ">
    <iframe id="patientFrame" frameborder="0" marginwidth="0" marginheight="0" style="width:100%;height:60em"></iframe>
</div>

$('#addPatient').click(function () {
  $('#dialog').dialog('open');
});
$('#dialog').dialog({
  autoOpen: false,
  title: 'Add/Select Patient',
  height: 'auto',
  width: '90%',
  position: ['top', 50],
  draggable: false,
  show: 'blind',
  hide: 'blind',
  modal: true,
  open: function (event, ui) {
    $.ajax({
      url: '@Url.Action("ManagePatient","Order")',
      type: 'GET',
      cache:false,
      success: function(data){
      setTimeout(function () {
        var frameSet = document.getElementById("patientFrame");
        var iframedoc = frameSet.document;

        if (frameSet.contentDocument)
          iframedoc = frameSet.contentDocument;
        else if (frameSet.contentWindow)
          iframedoc = frameSet.contentWindow.document;

        if (iframedoc){
          iframedoc.open();
          iframedoc.writeln(data);
          iframedoc.close();
        }
      },400);
    },
    error: function () {
      window.location.href = '@Url.Action("Index","Error")';
    }
  });
},
close: function (event, ui) {
  $("#patientFrame").attr("src", '');
}
});

您可以看到问题image here.对话框的右半边被PDF阻止。

1 个答案:

答案 0 :(得分:3)

特别是,我认为z-index可能是需要处理的问题,所以你可以应用z-index

另一方面,

Bgiframe 是你应该在

中找到的插件

另一个说明, 在通过互联网阅读一些文章后,我发现pdf是由Acrobat Reader插件加载的。 它的一部分与html无关 因此,当您调用任何pdf或显示任何文件时,它将调用插件并显示您的pdf 另一方面,如果你有第三方插件,特别是像一个acrobad读卡器,你无法控制显示器。 所以我的想法来自here

你应该使用两个iframe,这里可以找到一个例子

但毕竟如果您将z-index: -1;设置为position:absolute并且要显示(覆盖)设置position:absolutez-index:1可能是为您提供解决方案。

我提供了更多来自diff resources.thanks

的想法