浏览模式: 普通 | 列表
5月, 2024 | 1
使用该网页打印插件要引入jQuery和jquery.print.js文件。
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.print.js"></script>


打印内容
可以像下面这样使用来打印页面内容。
$("#myElementId").print(/*options*/);
或者:
$.print("#myElementId" /*, options*/);


配置参数
你可以在调用打印方法时传入一些参数:
$("#myElementId").print({
         globalStyles: true,
...

阅读全文…
1