gpt4 book ai didi

javascript - 如何在 iframe 中打印特定内容

转载 作者:行者123 更新时间:2023-11-29 15:41:25 25 4
gpt4 key购买 nike

<script type="text/javascript">
function printDoc() {
document.getElementById("frame_singleCheque").contentWindow.print();
}
</script>

<iframe style ="height:400px; width: 750px; overflow:scroll;" id="frame_singleCheque" src="http://www.w3schools.com"></iframe>
<input type="button" id = "btnCPrint" value = "Print" onclick="javascript:printDoc()" />

错误

[16:41:44.054] Error: Permission denied to access property 'print' @ http://localhost/pdf/print.php:3

我已经通过大量堆栈建议线程验证了打印 iframe 内容。但对我来说这些都行不通。

上面的代码只存在于我的 print.php 文件中。我想打印 iframe 内容。

我还想知道如何打印 iframe 中存在的特定 div。此 iframe 中的示例“class = 'example_code notranslate'”。

最佳答案

您可以通过将跨域iframe 嵌套在本地托管的iframe 中来完美打印跨域iframe 页面。 “代理 iframe”。

通过这种方式,父 javascript 可以毫无问题地打印代理 iframe,因为它是本地的,这将传递地打印它来自另一个域的内部 iframe。

此技术有效,并已由我本人验证。

在您的容器页面中,像这样托管 iframe

 <iframe id="printf" name="printf" class="A4" src="/SomeController/IFrameProxy?url=TARGETURL"></iframe>

代理 iframe 应该是这样的

        @model string
<html>
<head>
<title>IFrame Proxy</title>
<style>
html, body, iframe {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
border-style: none;
}
</style>

</head>
<body>
<iframe src="@Model" seamless></iframe>
</body>
</html>

打印 iframe(在容器页面上定义)的 javascript 应该看起来像这样:

        function printFrame() {
var frm = document.getElementById("printf").contentWindow;
frm.focus();// focus on contentWindow is needed on some ie versions
frm.print();
}

关于javascript - 如何在 iframe 中打印特定内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18486363/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com