function saveOrder() {
var w = window.open("", "导出", "height=0,width=0,toolbar=no,menubar=no,scrollbars=no,resizable=on,location=no,status=no");
var dt = new Date();
w.document.charset = "UTF-8";
w.document.write("订单号:"+document.getElementById('oidspan').innerHTML+',生成日期:'+dt.getFullYear()+"-"+(dt.getMonth()+1)+"-"+dt.getDate());
w.document.execCommand("SaveAs", false, "订单号.txt");
w.close();
}
JavaScript导出txt文件
最新推荐文章于 2024-09-26 17:17:12 发布