我正在使用Export HTML table to Excel its downloading table contents to the Excel中提到的JavaScript将HTML表格内容下载到Excel。
在我的表中,一列中有链接。下载时,该列内容在Excel工作表中显示为超链接。我想将表导出到Excel而没有这些链接(只是纯文本)。
有办法吗?
答案 0 :(得分:2)
您必须用文本替换所有超链接。
克隆要导出的表
table = $('#'+tableName).clone();
将锚标记替换为相应的范围
var sp1 = document.createElement("span");
var sp1_content = document.createTextNode($(hyperLinks[i]).text());
sp1.appendChild(sp1_content);
var sp2 = hyperLinks[i];
var parentDiv = sp2.parentNode;
parentDiv.replaceChild(sp1, sp2);
您可以找到有关替换节点的here详细信息。
中的代码导出以下是摘录或PEN
var tmp;
function strip(html) {
tmp = document.createElement("DIV");
tmp.innerHTML = html;
console.log(tmp.innerText);
console.log(tmp.textContent);
return tmp.textContent || tmp.innerText || "";
}
var tableToExcel = (function() {
var uri = 'data:application/vnd.ms-excel;base64,',
template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body><table>{table}</table></body></html>',
base64 = function(s) {
return window.btoa(unescape(encodeURIComponent(s)))
},
format = function(s, c) {
return s.replace(/{(\w+)}/g, function(m, p) {
return c[p];
})
}
return function(table, name, filename) {
if (!table.nodeType)
/*Clone the table that is to be exported*/
table = $('#'+table).clone();
var hyperLinks = table.find('a');
for (i = 0; i < hyperLinks.length; i++) {
//hyperLinks[i] = $(hyperLinks[i]).text();
var sp1 = document.createElement("span");
// give it an id attribute called 'newSpan'
sp1.setAttribute("id", "newSpan");
// create some content for the new element.
var sp1_content = document.createTextNode($(hyperLinks[i]).text());
console.log(sp1_content);
// apply that content to the new element
sp1.appendChild(sp1_content);
// build a reference to the existing node to be replaced
var sp2 = hyperLinks[i];
var parentDiv = sp2.parentNode;
// replace existing node sp2 with the new span element sp1
parentDiv.replaceChild(sp1, sp2);
}
var ctx = {
worksheet: name || 'Worksheet',
table: table[0].innerHTML
}
document.getElementById("dlink").href = uri + base64(format(template, ctx));
document.getElementById("dlink").download = filename;
document.getElementById("dlink").click();
}
})()
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a id="dlink" style="display:none;"></a>
<table name="tablename" id="tablename" border="1">
<tr>
<td>1</td>
<td><a href="http://google.com">google</a></td>
</tr><tr>
<td>2</td>
<td><a href="http://microsoft.com">microsoft</a></td>
</tr><tr>
<td>3</td>
<td><a href="http://amazon.com">amazon</a></td>
</tr>
</table>
<input type="button" onclick="tableToExcel('tablename', 'name', 'myfile.xls')" value="Export to Excel">
&#13;