提问人:user3302323 提问时间:8/24/2023 最后编辑:halferuser3302323 更新时间:9/5/2023 访问量:34
我已经从HTML表格中导出了一个Excel,但是在Excel中,我看到了下拉菜单,绘制了文本框。我只需要值
I have exported an Excel from HTML table, but in the Excel I see the drop menu, text box are drawn. I need only the values
问:
这是代码的 JS 部分。从 HTM 表创建 Excel。我看到文本框,在 excel 工作表中创建的单选按钮。我需要删除它们,我只需要文本值。是否有任何 XML 标记可以从 Excel 工作表中删除文本框和其他元素。
<script>
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) {
if (!table.nodeType) table = document.getElementById(table)
var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML}
window.location.href = uri + base64(format(template, ctx))
}
})()
</script>
答: 暂无答案
评论