在html中写入.txt文件NO DOWNLOAD

时间:2013-10-21 16:40:33

标签: javascript html save

请告诉我我的代码有什么问题!!!!我试图获取文本区域内容并将其保存到现有的文本文件

<textarea rows='10' cols='80' id='passForm' ></textarea>
<button onclick="WriteToFile()">Post</button>
<script type ="text/javascript">
function WriteToFile(passForm) {

set fso = CreateObject("Scripting.FileSystemObject");  
set s = fso.CreateTextFile("E:/MyStuff/test.txt", True);
s.writeline(document.passForm.input1.value);
s.Close();
}
</script>

1 个答案:

答案 0 :(得分:0)

很抱歉这样说但是使用jscript将文件保存到磁盘是不可能的。 这个问题已在Write file to disk得到解答。答案说这是不可能的。但您可以使用本地存储