使用jquery打开文件(e.q。test.txt),并将其替换为变量中写入的数据。是否可能。
var text_variable = "Some text";
现在打开文件e.q. test.txt并清除所有内容并将其替换为text_variable。
答案 0 :(得分:0)
出于安全原因,您无法使用Javascript编写文本文件。
答案 1 :(得分:-1)
您无法写入文本文件。你可以写信给localStorage。
var text_variable = "Some text";
localStorage.setKey('myText', text_variable);
//later in the code
var t2 = localStorage.geyKey('myText');
console.log(t2); // outputs Some Text