即当我从我的页面单击按钮时,所需的页面内容应该打印在一张纸上。这里的主要目标是,它不应该向我显示要求确定或取消按钮的页面的打印对话框/打印预览,我们还可以在其中选择特定页面的多个打印。提前致谢。
问问题
1403 次
2 回答
0
Create a print.js file by this code :
// ----------------------------------------------------------------------- (function($) { var opt; $.fn.jqprint = function (options) { opt = $.extend({}, $.fn.jqprint.defaults, options); var $element = (this instanceof jQuery) ? this : $(this); if (opt.operaSupport && $.browser.opera) { var tab = window.open("","jqPrint-preview"); tab.document.open(); var doc = tab.document; } else { var $iframe = $(""); if (!opt.debug) { $iframe.css({ position: "absolute", width: "0px", height: "0px", left: "-600px", top: "-600px" }); } $iframe.appendTo("body"); var doc = $iframe[0].contentWindow.document; } if (opt.importCSS) { if ($("link[media=print]").length > 0) { $("link[media=print]").each( function() { doc.write(""); }); } else { $("link").each( function() { doc.write(""); }); } } if (opt.printContainer) { doc.write($element.outer()); } else { $element.each( function() { doc.write($(this).html()); }); } doc.close(); (opt.operaSupport && $.browser.opera ? tab : $iframe[0].contentWindow).focus(); setTimeout( function() { (opt.operaSupport && $.browser.opera ? tab : $iframe[0].contentWindow).print(); if (tab) { tab.close(); } }, 1000); } $.fn.jqprint.defaults = { debug: false, importCSS: true, printContainer: true, operaSupport: true }; // Thanks to 9__, found at http://users.livejournal.com/9__/380664.html jQuery.fn.outer = function() { return $($('').html(this.clone())).html(); } })(jQuery);
And then include your print.js on an html page and see the demo of this :
<script> jQuery(document).ready(function () { jQuery("#printBtn").click(function(){ jQuery("#print").jqprint(); }); }); </script> <input type="button" id="printBtn" value="Print" /> <div id="print"> This will print this content. </div>
于 2013-02-27T07:18:52.363 回答
0
您的目标浏览器是什么?有一些浏览器特定的方法可以做到这一点。
对于 IE:
<script language='VBScript'>
Sub Print()
OLECMDID_PRINT = 6
OLECMDEXECOPT_DONTPROMPTUSER = 2
OLECMDEXECOPT_PROMPTUSER = 1
call WB.ExecWB(OLECMDID_PRINT, OLECMDEXECOPT_DONTPROMPTUSER,1)
End Sub
document.write "<object ID='WB' WIDTH=0 HEIGHT=0 CLASSID='CLSID:8856F961-340A-11D0-A96B-00C04FD705A2'></object>
</script>
window.print();
参考:msdn 博客
于 2013-02-27T07:16:18.350 回答