gpt4 book ai didi

javascript - 如何在js中通过链接打印HTML页面?

转载 作者:行者123 更新时间:2023-12-03 07:42:47 26 4
gpt4 key购买 nike

我有一个 HTML 页面的链接,如何用 JavaScript 打印页面?我尝试这样做:

var printContent = url;
var windowUrl = 'about:blank';
var uniqueName = new Date();
var windowName = 'Print' + uniqueName.getTime();
var printWindow = window.open("", "_blank");

printWindow.document.write( printContent );
printWindow.focus();
printWindow.print();
printWindow.close();

window.open(location);

但它打印的是网址而不是页面。我能做些什么?请帮忙!谢谢!

最佳答案

试试这个。删除打开新窗口的行。我已经在下面的代码中进行了评论。为此,您将需要 jquery。

$( document ).ready(function() {
$.get('http://example.com', function(data) {
var printContent = data;
var windowUrl = 'about:blank';
var uniqueName = new Date();
var windowName = 'Print' + uniqueName.getTime();
var printWindow = window.open("", "_blank");

printWindow.document.write( printContent );
printWindow.focus();
printWindow.print();
printWindow.close();

//window.open(location);
return;

});
});

关于javascript - 如何在js中通过链接打印HTML页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35336902/

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