printFinal是一个基于jQuery的打印插件,支持打印预览,使用很简单,废话不多多说,直接上代码。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>printFinal 实现打印功能</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="../jquery.printFinal.js"></script>
<link rel="Stylesheet" type="text/css" href="css.css" />
<script language="javascript" type="text/javascript">
$(function(){
function print(preview){
$("#content").printFinal({
preview: preview,//打印预览
impcss: true//引入css文件
});
}
$("#printbtn").click(function(){//打印按钮
print(false);
});
$("#previewbtn"