gpt4 book ai didi

javascript - 我可以修改此 JavaScript 以从 Div 打印图像吗?

转载 作者:行者123 更新时间:2023-11-28 12:47:00 25 4
gpt4 key购买 nike

我的页面布局中有一个要打印的 div。我已经完成了一些示例代码来了解如何执行此操作,并得出以下结果:

<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.1.min.js" > </script> 
<script type="text/javascript">

function PrintElem(elem)
{
Popup($(elem).text());
}

function Popup(data)
{
var mywindow = window.open('', 'print_div', 'height=400,width=600');
mywindow.document.write('<html><head><title>Print Window</title>');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.document.close();
mywindow.print();
return true;
}

</script>

然后在 HTML 正文中放置以下按钮:

<input type="button" value="Print Division" onclick="PrintElem('#print_div')" />

这非常适合在页面上创建基于文本的内容的快速打印,但我需要它做的是打印页面上显示的图像。我可以更改此脚本来执行此操作吗?

最佳答案

你不能这样做:

function PrintElem(elem)
{
Popup($(elem).html());
}

引用:http://api.jquery.com/html/

关于javascript - 我可以修改此 JavaScript 以从 Div 打印图像吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6674425/

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