如何在javascript

时间:2016-02-22 07:18:26

标签: javascript

if (window.XMLHttpRequest)
{
    xmlhttp=new XMLHttpRequest();
}
else
{
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","t1.txt",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseText;
xmlhttp.open("w","t1.txt");
xmlhttp.writeln('hai');
xmlhttp.close();
console.log(xmlDoc);

我将使用XMLHttpRequest()读取t1.txt文件,如何在t1.txt的同一文件中再写一些文本

1 个答案:

答案 0 :(得分:13)

你做不到。在不禁用大量安全选项的情况下,不允许浏览器端javascript写入客户端计算机。

相反,您可以使用此代码下载新文件

function downloadContent(name, content) {
  var atag = document.createElement("a");
  var file = new Blob([content], {type: 'text/plain'});
  atag.href = URL.createObjectURL(file);
  atag.download = name;
  atag.click();
}

downloadContent("t1.txt","hello world");