<div id="PrintContent">这里是要打印的内容</div>
<button id="print">打印</button>
$(function(){
$("#print").click(function(){
PrintHtml();
})
function PrintHtml(){
var pc = $("#PrintContent").html();
var pw = window.open('', '', 'width=500,height=400');
pw.document.write('<html>');
pw.document.write('<head>');
pw.document.write('<link href="/Static/css/bootstrap.min14ed1.css?v=3.3.6" rel="stylesheet">');
pw.document.write('</head>');
pw.document.write('<body>');
pw.document.write(pc);
pw.document.write('</body>');
pw.document.write('</html>');
pw.document.close();
setTimeout(function () {
pw.window.print();
}, 500);
return false;
}
})