如果我使用javascript导出html div但是excel表中没有显示 如何用图像导出html div?
这是我的代码
<div id="divResults">
<div class="box-header">
<div class="col-md-3">
<img style="padding-left: 50px;" src="@routes.Assets.at(" images/SVCE.png ")"/>
</div>
<div class="col-md-5">
<center style="padding-top:30px">
<h4>abc def ghi</h4>
</center>
</div>
</div>
<table class="table" cellpadding="3" width="80%" border="1" align="center" style="width:80%">
<thead>
<tr>
<th>a</th>
<th>b</th>
<th>c</th>
<th>d</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</tbody>
</table>
</div>
请帮助我们?
答案 0 :(得分:0)
您可能需要服务器端解决方案。这篇文章与你的相似,并且有一个公认的答案。