标签: javascript jquery html html-table export-to-excel
我正在尝试将html表格数据导出到excel表格,我也成功地使用了文本和图像。
window.open('data:application/vnd.ms-excel,' + encodeURIComponent($('#dvData').html()));
但只有当互联网可用时图像才可见,因为图像源包含链接。
<td><img src="some link" /></td>
有没有办法下载Excel并在离线模式下打开它以查看图像?