我在codeigniter中使用Jquery数据表,现在我想打印网页,但我想删除搜索框和分页打印网页时。我该怎么做?这是我到目前为止的代码
<script type="text/javascript">
function PrintElem(elem)
{
Popup($(elem).html());
}
function Popup(data)
{
var mywindow = window.open('', 'new div', 'height=400,width=600');
mywindow.document.write('<html><head><title></title>');
/*optional stylesheet*/ //mywindow.document.write('<link rel="stylesheet" href="main.css" type="text/css" />');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.print();
mywindow.close();
return true;
}
</script>
<input type="button" value="Print" onclick="PrintElem('#yourdiv')" />
@media print
{
.noprint {display:none;}
}
将类noprint
添加到搜索框和分页中。