HTML DOM print() 方法 ,html 打印

<html>
<head>
<script type="text/javascript">
function printpage()
{
window.print()
}
</script>
</head>
<body>

<input type="button" value="打印本页" onclick="printpage()" />

</body>
</html>

HTML DOM print() 方法

原文地址:https://www.cnblogs.com/apolloren/p/14410662.html