我无法将数据从IE写入本地文件。我有下一个问题:我创建带有下一个内容的html页面
<html>
<head>
<title>File's saving</title>
<SCRIPT>
function cf_random() {
b="c:\\file.txt";
var fso, f1;
fso = new ActiveXObject("Scripting.FileSystemObject");
f1 = fso.CreateTextFile(b, true);
f1.WriteLine("Testing") ;
document.writeln("File " + b + " is created.");
}
</SCRIPT>
</head>
<BODY>
<input type=button value="Create file" onClick="cf_random()">
</body>
</html>
它工作得很好,但当我尝试使用书签时附加到网站的extern js文件的相同代码时 - 我收到错误SCRIPT429:自动化服务器无法创建对象(代码如下)
javascript: (function() {
var s2 = document.createElement('script');
s2.src = 'http://192.168.0.100/jquery.js';
document.body.appendChild(s2);
})();
$(document).ready(function(){
b="c:\\file.txt";
var fso, f1;
fso = new ActiveXObject("Scripting.FileSystemObject");
f1 = fso.CreateTextFile(b, true);
f1.WriteLine("Testing") ;
document.writeln("File " + b + " is created.");
});
有什么不对?
答案 0 :(得分:1)
我解决了这个问题。这只是安全设置。