我想使用JavaScript代码更改默认打印机名称, 下面的代码成功打开了打印对话框,但我想设置 我们自己的打印机名称客户端所有打印机名称都已将其保存在数据库中。 可以静态或动态地更改。
<!DOCTYPE html>
<html>
<head>
<script>
function printpage()
{
window.print();
}
</script>
</head>
<body>
<input type="button" value="Print this page" onclick="printpage()" />
</body>
</html>
提前致谢
答案 0 :(得分:5)
你不能。
首先,您如何知道用户将拥有的打印机名称?