我正在使用此功能下载文本文件
此代码仅适用于Chrome浏览器,
什么是其他浏览器中用于
请指导我
function downloadFileFnc(text, fileName)
{
var textCode = new Blob([text], { type: "application/text" });
var dldLnkVar = document.createElement('a');
dldLnkVar.href = window.URL.createObjectURL(textCode);
dldLnkVar.setAttribute('download', fileName);
dldLnkVar.click();
}