在 html 中写入 .txt 文件没有下载
Posted
技术标签:
【中文标题】在 html 中写入 .txt 文件没有下载【英文标题】:Writing to .txt file within html NO DOWNLOAD 【发布时间】:2013-10-21 16:40:32 【问题描述】:请告诉我我的代码有什么问题!!!!我正在尝试获取文本区域内容并将其保存到现有文本文件中
<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】:我很抱歉这么说,但无法使用 jscript 将文件保存到磁盘。 Write file to disk 已经回答了这个问题。答案说这是不可能的。但你可以使用本地存储
【讨论】:
以上是关于在 html 中写入 .txt 文件没有下载的主要内容,如果未能解决你的问题,请参考以下文章
python 下载抓取网址列表并写入文件“urls.txt”
更新:利用webdriver, pyautogui向westransfer自动上传多个文件夹,并把文件名和下载链接写入txt文件
Python 2.7_Second_try_爬取阳光电影网_获取电影下载地址并写入文件 20161207