欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

jquery.print.js怎么用

傅智翔1年前8瀏覽0評論
使用jquery.print.js打印網(wǎng)頁內(nèi)容是一種非常方便的方法。這個插件可以讓你在瀏覽器中直接打印出網(wǎng)頁內(nèi)容,而無需將其導(dǎo)出到其他文件或使用其他打印工具。以下是jquery.print.js的用法。 首先,在你的網(wǎng)頁中引入jquery.print.js文件??梢允褂肅DN鏈接或者將文件下載到本地。
<script src="https://cdn.jsdelivr.net/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery.print/1.6.0/jQuery.print.min.js"></script>
接下來,給你想要打印的元素添加class名,例如你要打印id為content的div元素。
<div id="content" class="print">
<h1>這是要打印的內(nèi)容</h1>
<p>這是要打印的內(nèi)容的一些文字描述</p>
</div>
然后使用jquery.print.js中的代碼來觸發(fā)打印。
$('button').on('click', function () {
$("div.print").print({
globalStyles: true,
mediaPrint: false,
stylesheet: null,
noPrintSelector: ".no-print",
iframe: true,
append: null,
prepend: null,
manuallyCopyFormValues: true,
deferred: $.Deferred()
});
});
在上面這段代碼中,我們使用了一個button元素,并且使用jquery.on()方法來綁定了一個事件處理器函數(shù)。這個處理器函數(shù)會被觸發(fā),當(dāng)按鈕被點(diǎn)擊時。在函數(shù)中,我們使用jquery.print.js中的函數(shù),將添加class名為"print"的元素(即我們要打印的元素),打印輸出到打印機(jī)上。函數(shù)中的其他參數(shù)也可以根據(jù)需要進(jìn)行修改。 最后,你只需要點(diǎn)擊按鈕就可以直接把需要打印的內(nèi)容輸出到打印機(jī)上了。