javascript用最简单的代码实现局部打印功能,下面web建站小编给大家简单介绍一下实现代码!
html代码:
<p id="print1">打印当前区域1</p> <p id="print2">打印当前区域2</p> <button onclick="printer1()">打印区域1</button> <button onclick="printer2()">打印区域2</button>
js代码:
//打印区域1
function printer1(){
var newWin = window.open('printer', '', '');
var print = document.getElementById("print1").innerText; //打印区域
newWin.document.write(print);
newWin.document.location.reload();
newWin.print();
newWin.close();
}
//打印区域2
function printer2(){
var newWin = window.open('printer', '', '');
var print = document.getElementById("print2").innerText; //打印区域
newWin.document.write(print);
newWin.document.location.reload();
newWin.print();
newWin.close();
}
jQuery实现网页div局部打印(jQuery.print插件)
上面是“js最简单的代码实现局部打印功能(非插件)”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_2881.html
workflows工作流
树上挂着一只快乐的小樱桃
Latent放大comfyui工作流
一只蓬松柔软的圆形半鳄梨玩偶
一座巨大的野兽派建筑漂浮在热带风景中的贫民
嘴唇丰满的漂亮女人
一辆在泥潭中奔跑的布加迪ComfyUI工作流
一只蚊子被嵌在琥珀中ComfyUI工作流
五颜六色的球花comfyui工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

纯html+css做一个3d统计效果
css3搭积木叠加图形
用ascii字符画图像
纯css翻书效果
在线生成金属文字
3d空间行走效果
html5如何3D立方体旋转特效
如何利用svg做一个有趣的loading动画加载











