JavaScript和Windows 10?

时间:2018-11-04 17:43:22

标签: javascript windows

此代码有效吗?以及如何测试? 我尝试写入本地文件。在记事本++中包含此代码,然后尝试使用IE进行测试

<html>
<head>
<script>
function write_to_file(){
   var content=document.innhold.tekst.value;
   var filname=""
   document.open("text/html","replace");
   document.write(content);
   document.close();
   document.execCommand("SaveAs",true,filename + ".txt")
}
</script>
</head>
<body>
<form name="innhold" action="./write_to_file_using_JS_simple.html
onsubmit="write_to_file()">
Tekst som lagres: <p>
<textarea rows="6" cols="80" name="tekst">
</textarea>
</p>
<input type="submit" name="submit" value="submit form">
</form>
</body>
</html> 

1 个答案:

答案 0 :(得分:0)

无法在浏览器中使用javascript保存文件。