码迷,mamicode.com
首页 > Web开发 > 详细

js生成txt文件

时间:2015-01-21 13:12:05      阅读:522      评论:0      收藏:0      [点我收藏+]

标签:

                

          var _txt = ‘这只是一个测试文本‘;
          var isIE = (navigator.userAgent.indexOf(‘MSIE‘) >= 0); if (isIE) { var strHTML = _txt; var winSave = window.open(); winSave.document.open("text","utf-8"); winSave.document.write(strHTML); winSave.document.execCommand("SaveAs",true,"code.txt"); winSave.close(); } else { var elHtml = _txt; var mimeType = ‘text/plain‘; $(‘#createInvoteBtn‘)[0].setAttribute(‘download‘, ‘code.txt‘); $(‘#createInvoteBtn‘)[0].setAttribute(‘href‘, ‘data:‘ + mimeType + ‘;charset=utf-8,‘ + encodeURIComponent(elHtml)); }

 由于IE跟火狐不兼容第二种方式,故写了两种!

js生成txt文件

标签:

原文地址:http://www.cnblogs.com/307914070/p/4238450.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!