我正在尝试使用printElement插件打印我的div内容。 div中有很多文本,因此有一个滚动条。问题是插件只打印实际在屏幕上的文本部分。如何打印所有文本?
编辑:
我需要一个解决方案,它将使用外部CSS中的样式打印此div。
答案 0 :(得分:3)
答案 1 :(得分:1)
https://github.com/jasonday/printThis
可以使用其他css文件和其他选项进行配置。
答案 2 :(得分:0)
<div class="printclass">Print</div>
<div id="mydivid">
Your content goes here
</div>
</div>
<script type="text/javascript">
$(function(){
$( ".printclass" )
.attr( "href", "javascript:void(0)")
.click(function(){
// Print the DIV.
$( "#mydivid" ).print();
// Cancel click event.
return( false );
});
});
</script>