我想在导出pdf或cvs时更改thead。原因是因为thead中的th的内容是图像。当我导出时(因为是图像),然后 内容为空 。
有一种方法可以在我导出时更改内容吗?
提前致谢,
答案 0 :(得分:0)
我刚刚找到解决方案!!我分享它,因为它可能对其他人有用。
我所做的是将文本和图像放在th中,然后设置样式并隐藏文本。你没有在网页上看到它,但是当你打印它时你可以看到它。
HTML
<th title="Castells"><img src='image.png' ><h3 class="hideText">Castells</h3></th>
CSS
.hideText{
text-indent: -9999px;
font-size: 1px;
}