Javascript:将表导出为具有特定行高的excel

时间:2015-01-26 07:57:52

标签: javascript html css excel

我使用this函数将表格保存为Excel文件。我已尝试将内联CSS height:0添加到trtd中,但它并未产生任何效果。有没有其他方法导出正确的行高?

<table>
  <tr>
    <td rowspan='2'>1</td>
    <td>2</td>
    <td>3</td>
  </tr>
  <tr style='height: 0'> <!-- no effect -->
    <td colspan='2' style='height: 0'></td>
  </tr>
</table>

0 个答案:

没有答案