是否可以创建document
in的复制变量javascript
?
因为我是 C# 开发人员,所以我想要类似的东西
var doc=new document();
var doc = document;
doc.open('application/txt', 'replace');
doc.charset = 'utf-8';
doc.write('Message to write in txt file');
doc.close();
if (doc.execCommand('SaveAs', true,'test.txt')) {
alert(success);
}
我在 iframe 弹出窗口中有一个按钮和一些其他控件,我想在单击按钮时打开另存为对话框。在我运行上面的代码后,“要写入 txt 文件的消息”显示在我有按钮和其他控件的页面中