我是php的新手,想要从数据库导出表格以及如何实现这一点请用简单的语言解释,因为我对php很新。请用合适的例子向我解释一下。 谢谢
答案 0 :(得分:2)
您需要创建新样式表print.css并设置CSS media = print
例如:
<style media="screen">
.noPrint{ display: block; }
.yesPrint{ display: block !important; }
</style>
<style media="print">
.noPrint{ display: none; }
.yesPrint{ display: block !important; }
</style>
并将“yesPrint”类添加到要打印的部分
<div class= "yesPrint">
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
</div>
现在添加一个按钮
<input TYPE="button" onClick="window.print()">
了解更多详情:http://www.codeproject.com/KB/HTML/Printing_with_CSS.aspx
或使用TableTools。它是DataTables HTML表格增强器的插件,可为DataTable添加高度可自定义的按钮工具栏。主要功能包括: