gpt4 book ai didi

javascript - window.print() javascript 无法在 chrome 中预览

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

我有一个灯箱插件需要额外的选项 - 打印图像。所以我做了一个小的 JS 函数来打印该图像,如下所示:

var headstr="<!DOCUMENT html><html xmlns='http://www.w3.org/1999/xhtml'><head><title></title></head><body>";
var footstr="</body>";
var newstr="<img src=\"[img-location]\" alt='courses' />";
document.body.innerHTML=headstr+newstr+footstr;
window.print();
window.location.reload();

问题是当用户按下打印按钮时,在 chrome 中它会打开一个新窗口(chrome 打印页面)并在其中显示 - print preview failed .在 Firefox 和 IE8 中它工作得很好......

最佳答案

我不知道这是否是导致您失败的原因,但是如果 window.print() 是从具有 method="post"的表单中的 <input type="submit"> 调用的(即每个 asp.net页)然后 Chrome 打印预览假发出来。

解决办法是加上return false;在 window.print() 之后,这样页面就不会回发。

<html>
<head>
</head>
<body>
<form method="post" action="test.html">
<p>This is only a test. Had this been a real emergency....</p>

<!--This doesn't work -->
<!-- <input type="submit" onclick="JavaScript:window.print();">-->

<!--But this does -->
<input type="submit" onclick="JavaScript:window.print();return false;">

</form>
</body>
</html>

关于javascript - window.print() javascript 无法在 chrome 中预览,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6946350/

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