我在 mvc 视图中有一个表
<table>
<tr>
<th>
<span>Trasaction Date</span>
</th>
<th>
<span>Company Name</span>
</th>
<th>
<span>Store Name</span>
</th>
<th>
<span>Loan #</span>
</th>
<th>
<span>Customer Name</span>
</th>
<th>
<span>Payment Amount</span>
</th>
<th>Tender Type</th>
<th>
<span>Transaction Ref</span>
</th>
<th>
<span>IP Address</span>
</th>
<th>
<span>Store ID</span>
</th>
<th>
<span>Originating User</span>
</th>
<th></th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.Transaction_Date)
</td>
<td>
@Html.DisplayFor(modelItem => item.Company_Master.Company_Name)
</td>
<td>
@Html.DisplayFor(modelItem => item.Location.Loc_Name)
</td>
<td>
@Html.DisplayFor(modelItem => item.Account_Loan_Number)
</td>
<td>
<span>@Html.DisplayFor(modelItem => item.Customer_First_Name) </span><span>@Html.DisplayFor(modelItem => item.Customer_Last_Name)</span>
</td>
<td>
@Html.DisplayFor(modelItem => item.Payment_Amount)
</td>
<td>
@Html.DisplayFor(modelItem => item.Tender_Type)
</td>
<td>
@Html.DisplayFor(modelItem => item.Payment_ID)
</td>
<td>
@Html.DisplayFor(modelItem => item.OriginatedVia)
</td>
<td>
@Html.DisplayFor(modelItem => item.Location.Loc_ID)
</td>
<td>
@Html.DisplayFor(modelItem => item.Inserted_By)
</td>
<td>
<div id="btndeletediv">
<input type="button" id="@(item.Payment_ID)" value="Print" />
</div>
</td>
</tr>
}
</table>
这张桌子看起来像![this] http://i.imgur.com/FUIYce2.png?1
当我单击 pdfexport 按钮时,我想在带有 css 的 pdf 中显示同一个表格。
我试过使用 iTextSharp 但没有运气。如何在我想传递表 id(或任何类似的东西)的地方使用 jspdf。
我试过搜索,但找不到任何人将表格导出为 pdf。
提前致谢