我正在尝试编写一个允许用户以csv格式保存文件的javascript。 我能够将此部分保存为带有以下代码的文本选项: var w = window.frames.w;
w = document.createElement("iframe");
w.id = "w";
w.style.display = "none";
document.body.insertBefore(w);
w = window.frames.w;
w = window.open("", "_temp", "width=100,height=100");
var d = w.document;
d.open("text/plain","replace");
d.charset = "utf-8";
d.write(content);
d.close();
var name = "batchExport_ash.txt";
d.execCommand("SaveAs", null, name)
请有人在这里指导我。非常感谢。