0
我正在使用jquery插件來打印我的網頁的特定div。它在Firfox和IE中工作正常。但不幸的是,它不適用於Google Chrome。實際上谷歌瀏覽器正在打印包括橫幅,菜單和按鈕的完整網頁。我無法解決這個問題。Google chrome打印問題
這裏是我的示例代碼
Java腳本
$(function() {
$("input:button").click(function() {
$("#print").printThis();
});
});
HTML
<body>
<input type="button" value="print" />
<div id="print">
this is print area, it can be everything. this is print area, it can be everything. this is print area, it can be everything. this is print area, it can be everything. this is
</div>
</body>
這將有助於知道您使用的是哪個插件。無論如何,在大多數情況下,使用CSS來定義可打印區域是最容易的,除非您打算在打印整個頁面的同時提供單獨的打印部分。 – JJJ