我正在尝试打开构建html(在js功能内)以在新选项卡上显示表格。 现在我正在尝试为用户添加一个js函数以excel格式下载表,但是一旦我尝试添加标记代码中断。
我试过以下: 在js函数中编写了内置html代码的脚本标记内的下载功能。 添加了一个包含download js功能的新javascript文件。 在变量中添加了下载功能,并尝试将其包含在脚本标记中。 使用< script>而不是标记。
以下是我的代码:
var myfunction = function download() {
$("#btnExport").click(function(e) {
e.preventDefault();
var data_type = "data:application/vnd.ms-excel";
var table_div = document.getElementById("table_wrapper");
var table_html = table_div.outerHTML.replace(/ /g, "%20");
var a = document.createElement("a");
a.href = data_type + ", " + table_html;
a.download = "exported_table_" + Math.floor((Math.random() * 9999999) + 1000000) + ".xls";
a.click();
});
};
var html='<html><head><title>Locale Value</title><script>'+myfunction+'</script></head>'+
'<body><h2>'+Header+'</h2><br><br><table> <tr> <th>Key</th> <th>Value</th></tr>';
for (var key in data) {
var eachrow = '<tr>'
+ '<td>' + key + '</td>'
+ '<td>' + data[key] + '</td>'
+ '</tr>';
html=html+eachrow;
}
html=html+'</table><br><br><button id="exportExcel" onclick="download()">Export</button></body></html>';
return html;
}
这里的问题是我一关闭脚本标签(即), 我的主脚本标记(其中所有函数都已写入)显示为已关闭。同样出现在屏幕上。
答案 0 :(得分:0)
在字符串中使用“\”。符号“\&lt;”是“&lt;”的转义字符。
答案 1 :(得分:0)
我已更新您的代码,请检查:
$(function () {
var myfunction = function download() {
$("#btnExport").click(function (e) {
e.preventDefault();
var data_type = "data:application/vnd.ms-excel";
var table_div = document.getElementById("table_wrapper");
var table_html = table_div.outerHTML.replace(/ /g, "%20");
var a = document.createElement("a");
a.href = data_type + ", " + table_html;
a.download = "exported_table_" + Math.floor((Math.random() * 9999999) + 1000000) + ".xls";
a.click();
});
var html = '<html><head><title>Locale Value</title><script>' + myfunction + '</' + 'script></head>' +
'<body><h2>' + Header + '</h2><br><br><table> <tr> <th>Key</th> <th>Value</th></tr>';
for (var key in data) {
var eachrow = '<tr>'
+ '<td>' + key + '</td>'
+ '<td>' + data[key] + '</td>'
+ '</tr>';
html = html + eachrow;
}
html = html + '</table><br><br><button id="exportExcel" onclick="download()">Export</button></body></html>';
return html;
};
});