我需要在新窗口中打开它来打印pdf。我已经看了几天的教程,但没有任何工作。我尝试了很多方法,但这是最新的方法:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function print()
{
window.getElementById("pdf").focus();
window.getElementById("pdf").print();
}
</script>
</head>
<body onload="print()">
<embed id="pdf" src="http://path/to/file" />
</body>
</html>
页面加载正常,嵌入了pdf。但它不会打印出来,而且我觉得我一直在打砖墙,试图解决这个问题。我怎样才能让它发挥作用?我愿意在这一点上尝试任何事情。