欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JS實(shí)現(xiàn)頁(yè)面打印功能

 更新時(shí)間:2017年03月16日 10:38:02   作者:Sener  
本文主要介紹了JS實(shí)現(xiàn)頁(yè)面打印功能的方法,具有很好的參考價(jià)值。下面跟著小編一起來看下吧

打印整個(gè)頁(yè)面

示例1.

可直接在按鈕添加調(diào)用打印方法:

<input type='button' value='打印整頁(yè)' onclick='javascript:window.print();' />

示例2.

也可調(diào)用JS方法

<html>
<head>
<script type="text/javascript">
function printpage()
 {
 window.print()
 }
</script>
</head>
<body>
<input type="button" value="Print this page"
onclick="printpage()" />
</body>
</html>

關(guān)于window.print()方法

print() 方法用于打印當(dāng)前窗口的內(nèi)容。

以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時(shí)也希望多多支持腳本之家!

相關(guān)文章

最新評(píng)論