我有一個簡單的設置與http://denishoctor.me/readertest.html(以下代碼也)。該按鈕通過嵌入式pdf打開對話框。除了IE6/7/8,這一切都很好。如何通過我的jQuery UI對話阻止IE7/8流血中的Adobe Reader?
有誰知道如何制止這種情況?
感謝, 丹尼斯
<button type="button">Click Me</button>
<iframe id="iFrameResponse" style="margin-left:250px;height:500px;width:100%" src="http://knowwheretheygo.org/media//static/content/sample.pdf"></iframe>
<div id="InformationDialog" style="display: none;">This is my info</div>
<script type="text/javascript">
$(document).ready(function() {
$("#InformationDialog").dialog({
title: "Information",
autoOpen: false,
hide: "slide",
show: "slide",
width: 225,
position: [100,125],
height: 400
});
$("button").click(function() {
$("#InformationDialog").dialog('open'); return false;
});
});
</script>
更新:我發現http://groups.google.com/group/jquery-ui/browse_thread/thread/66c7d2d31feedea9?fwc=1。談什麼http://brandonaaron.net/code/bgiframe/docs/。如上所述,任何人都知道需要進行哪些更改才能使其在IE for PDF中正常工作?
不幸的是,這不是我覺得可以解決的問題。該插件在瀏覽器之外(我在Linux上使用flash也是如此)。 – Blender 2011-05-13 05:34:50
當Safari對話框位於頂部時,它在滾動PDF時也會在Safari中呈現錯誤。 – 2011-05-13 05:52:08