jQuery打印圖片pdf、txt示例代碼
更新時間:2014年07月22日 17:15:03 投稿:whsnow
本節(jié)主要介紹了jQuery打印圖片pdf、txt,需要的朋友可以參考下
html加如下代碼
<div style="display:none">
<div id="to_print"></div>
<input type="button" id="print_button" value="Print" onclick="document.getElementById('FILEtoPrint').focus(); document.getElementById('FILEtoPrint').contentWindow.print();" />
</div>
<script>
function printSome(path){ //傳入文件路徑
$("#to_print").html('<iframe src='+path+' id="FILEtoPrint"></iframe>');
setTimeout(function(){$("#print_button").click();}, 500);
}
</script>
web界面添加按鈕調用js即可
相關文章
jQuery使用getJSON方法獲取json數(shù)據(jù)完整示例
這篇文章主要介紹了jQuery使用getJSON方法獲取json數(shù)據(jù),結合完整實例形式分析了getJSON方法讀取與遍歷json文件數(shù)據(jù)的相關技巧,需要的朋友可以參考下2016-09-09
使用jQuery插件創(chuàng)建常規(guī)模態(tài)窗口登陸效果
隱藏模態(tài)窗口技術是一種很好的解決方案,用于處理不是特有必要出現(xiàn)在網(wǎng)頁上的界面元素,下面與大家分享下如何利用jQuery插件leanModal建立一個常規(guī)模態(tài)窗口2013-08-08
jQuery+css last-child實現(xiàn)選擇最后一個子元素操作示例
這篇文章主要介紹了jQuery+css last-child實現(xiàn)選擇最后一個子元素操作,結合實例形式分析了jQuery結合css進行頁面元素選擇與樣式修改相關操作技巧,需要的朋友可以參考下2018-12-12
jQery使網(wǎng)頁在顯示器上居中顯示適用于任何分辨率
這篇文章主要介紹了jQery使網(wǎng)頁在任何分辨率的顯示器上居中顯示的方法,需要的朋友可以參考下2014-06-06

