我尝试了以下两种方法..
<embed src="assets/pdf/mypdf.pdf" id="Pdf1" name="Pdf1" hidden="true">
<a class="print" onClick="document.Pdf1.printWithDialog();"></a>
<a onClick="document.getElementById('Pdf1').printWithDialog()" style="cursor:hand;">Print file</a>
又一次尝试。。
<script type="text/javascript">
function printPDF(pdfUrl)
{
var w = window.open(pdfUrl);
w.print();
}
</script>
<a class="print" onClick="printPDF("assets/pdf/mypdf.pdf");">a</a>
似乎没有一个工作。任何解决方案,以便我可以单击链接并将pdf发送到打印对话框?window.print 只是在对话框中显示实际站点,而不是 pdf。