我正在使用 HTML 代码将某些内容打印到 div 中,当我单击浏览器中的按钮时,它会打印此内容,这里在打印对话框之前似乎选择了打印机,但我希望它直接打印使用连接到系统的默认打印机。
ps这与浏览器无关,因为浏览器按钮仅用于测试,但实际上我将直接打印 div 的内容。
我正在使用的代码:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<script language="javascript" type="text/javascript">
function printDiv(divID) {0.
//Get the HTML of div
var divElements = document.getElementById(divID).innerHTML;
//Get the HTML of whole page
var oldPage = document.body.innerHTML;
//Reset the page's HTML with div's HTML only
document.body.innerHTML =
"<html><head><title></title></head><body>" +
divElements + "</body>";
//Print Page
window.print(false);
//Restore orignal HTML
document.body.innerHTML = oldPage;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="printablediv" style="width: 100%; background-color: Blue; height: 200px">
ay klam
</div>
<input type="button" value="Print 1st Div" onclick="javascript:printDiv('printablediv')" />
</form>
</body>
</html>