<!DOCTYPE html>
<html>
<head>
<title>打印</title>
</head>
<body>
<html>
<div id="printtest">
<table>
cs
</table>
</div>
<script type="text/javascript">
function testprint(){
var body=document.getElementById("printtest");
document.body.innerHTML=body.innerHTML
window.print();
}
</script>
<input type="button" name="print" value="打印" onclick="javascript:testprint();"/>
</body>
</html>
js 调起网页版打印界面
最新推荐文章于 2025-06-01 09:14:35 发布