当我在表格中使用此功能时。
<div id="exportable">
<table border="1" width="100%">
<thead>
<td>Question</td>
<td>Answer</td>
</thead>
<tbody>
<tr data-ng-repeat="q in ques">
<td>{{q.Title}}</td>
<td ng-bind-html="ans[$index+1]"></td>
</tr>
</tbody>
</table>
</div>
表
{{1}}
excel文件就像 this
额外的“—来自每一行。如何删除它
答案 0 :(得分:0)
我使用过这个脚本
for(var i=0;i<ans.length;i++){
ans[i] = ans[i]..replace(/\u200B/g,'');
}