<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title>Document</title></head><body><textarea name="wenben" id="wenben" cols="100" rows="10">000</textarea><input type="button" value="Save" onclick="saveText()"> <script> function saveText() { var strHTML= document.getElementById("wenben").value;//获取内容 var winSave=window.open(); winSave.document.open("text","gb2312"); winSave.document.write(strHTML); winSave.document.execCommand("SaveAs",true,"newfile.txt"); window.location.href="#" ; winSave.close(); } </script></body></html>
追问问题就在于......并不能生成newfile.txt这个文件
加alert调试发现你写的这个js函数完全执行完了,但是没有生成文件,手动添加文件也没有往里面写东西
能麻烦您帮帮忙吗
追答简单好用用js就可以保存文本文件到本地
你看看这个,我试过可以用