Html table to csv table with image
How to export this html table in to CSV example table:
i want this table to be exported to csv .so how to achieve using JQUERY?
<html>
<body bgcolor="cyan"开发者_StackOverflow中文版>
<table border="1" align="center" >
<br><a href="imp2.csv">Click Here To View In CSV format</a><img src="up.jpg" align="middle" width="39" height="32" />
<tr>
<th>ID</th>
<th>Name</th>
<th>Month</th>
<th>Savings</th>
</tr>
</table>
</body>
</html>
Thanks Joseph
Excel files support embedded images, CSV files do not. So the short answer is: You can't.
Theoretically, you could set location
to a data: scheme URI that you generate on the fly. Actually generating an Excel file would be distinctly non-trivial and I wouldn't be surprised if you rapidly ran into length limits.
CSV stands for Comma Seperated Values. It is just text seperated with commas(,). No way to give formatting to it for default application.
精彩评论