我收到如下所示的服务器响应,我想使用 javascript 创建一个 html 文件并将其保存在本地计算机上。
HTML 文件
<!DOCTYPE html>
<html>
<head>
<script>
function copyText()
{
}
</script>
</head>
<body>
Field1: <input type="text" id="field1" value="Hey There"><br>
Field2: <input type="text" id="field2">
<br><br>
<button onclick="copyText()">Copy Text</button>
<p>A function is triggered when the button is clicked. The function copies the text from Field1 into Field2.</p>
</body>
</html>
是否可以使用 javascript 创建文件?
我试着用
fso = new ActiveXObject("Scripting.FileSystemObject");
thefile=fso.CreateTextFile("C:\\tmp\\MyFile.txt",true);
write(responseHtmlStr)
在 chrome 上,但我收到错误“未捕获的 ReferenceError:ActiveXObject 未定义”
我在某处读到,由于安全威胁,这是不可能的。请指点一下。这将非常有帮助。
谢谢 Gendaful