【发布时间】:2016-12-22 11:07:03
【问题描述】:
在页面上,我在 iframe 中显示了一个 pdf 文档,我尝试直接打印它。在我的搜索结束时,出于安全等原因,这种情况适用于 IE 11,但我该怎么做?我不知道。请救救我:/
我使用这些 DOM 元素和函数
<button type="button" onclick="printDoc()" class="btn success">Print It</button>
<script type="text/javascript">
function printDoc() {
$(document).ready(function () {
document.getElementById("myDiv").contentWindow.print({
bUI: false, bSilent: true,
bShrinkToFit: true
});
});
};
</script>
【问题讨论】:
标签: javascript internet-explorer iframe printing activex