这里我尝试使用一个HTML页面表格内容制作PDF。对我而言,它在创建PDF和下载方面工作得很好,但问题是我没有得到我在HTML页面中使用的正确表格格式(它在网页中看起来像我在PDF中所需要的那样)。下面给出我的代码和表结构。我正在使用HTML table export jQuery plugin
我的HTML代码
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="bootstrap.min.css">
<!-- jQuery 2.0.2 -->
<script type="application/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script type="application/javascript" src="tableExport.js"></script>
<script type="application/javascript" src="jquery.base64.js"></script>
<script type="application/javascript" src="jspdf/libs/sprintf.js"></script>
<script type="application/javascript" src="jspdf/jspdf.js"></script>
<script type="application/javascript" src="jspdf/libs/base64.js"></script>
</head>
<body>
<div id="example">
<table class="table table-bordered col-lg-6">
<tr>
<th class="text-center" colspan="5">Details</th>
</tr>
<tr>
<th class="text-center">Time</th>
<th class="text-center">Track</th>
<th class="text-center">user</th>
<th class="text-center">linked user's</th>
<th class="text-center">User section</th>
</tr>
<tr>
<td class="text-center">08:30 - 09:30</td>
<td class="text-center" colspan="4">nill</td>
</tr>
<tr>
<td class="text-center">09:30 - 12:00</td>
<td class="text-center Inaugural" colspan="4">Inoo
<br> smartphones a big hit in world</td>
</tr>
<tr>
<td class="text-center">09:30 - 12:00</td>
<td class="text-center Industry" colspan="4">user Key
<br>smartphones a big hit in world</td>
</tr>
<tr>
<td class="text-center">12:00 - 13:30</td>
<td class="text-center Industry" colspan="4">User</td>
</tr>
<tr>
<td class="text-center" rowspan="3">13:30 - 14:30</td>
<td class="text-center">T Track</td>
<td class="text-center">T User</td>
<td class="text-center">smartphones a big hit in world</td>
<td class="text-center">smartphones a big hit in world smartphones a big hit in world</td>
</tr>
<tr>
<td class="text-center">T track</td>
<td class="text-center">T user</td>
<td class="text-center">smartphones a big hit in world</td>
<td class="text-center">smartphones a big hit in worldsmartphones a big hit in world</td>
</tr>
<tr>
<td class="text-center">T track</td>
<td class="text-center">T user</td>
<td class="text-center">smartphones a big hit in world</td>
<td class="text-center">smartphones a big hit in worldsmartphones a big hit in worldsmartphones a big hit in world</td>
</tr>
</table>
</div>
<a href="#" onclick="$('#example').tableExport({type:'pdf',escape:'false'});">Genrate</a>
</body>
</html>
答案 0 :(得分:0)
使用inline-css而不是外部css 据我所知,只有表格元素上的内联CSS才能正确导出。我找到了here
答案 1 :(得分:0)
我知道我的比赛有点晚了。但我发布这个以防任何人最终在这里寻找答案。
我们可以使用jsPDF自动表插件为您的pdf添加格式良好的表。要使用它,请下载并添加jspdf.plugin.autotable.js和jspdf.min.js。
使用简单,表格格式多种多样。
您可以在this GitHub repository中找到完整的文档。