使用JavaScript保存文本文件到本地的两种方法
一段使用javascript保存文件的代码。这里方法可以保存指定id元素下的所有html内容;不过这个方法只支持IE浏览器。
functioncreateHtml(){ try{ save_record("index1",$("#yhtcprediv").html()); }catch(e){ alert(e); } } functionsave_record(filename,content){ //打开新窗口保存 varwinRecord=window.open('about:blank','_blank','top=500'); winRecord.document.open("text/html","utf-8"); winRecord.document.write(""+content+"
简单好用的JS保存文本文件到本地
保存文本文件到本地 测试文本,你可以随便修改,完事后点保存。