js简单打印表格
显示效果
打印效果(在chrome能显示打印效果)
方法
<table width="600px" border="1" align="center" cellspacing="0" cellpadding="0" bordercolor="#66CC99"></table>
window.print();
关键是设置bordercolor属性。
出现问题的代码:
<table width="600px" border="0" align="center" cellspacing="1" cellpadding="1" bgcolor="black"></table>
window.print();
这种方法显示的效果是这样的:
但是打印的时候没有边框: