今天我创建了一个HTML文档。编写登录和注册网站的代码。我的想法如下: 创建帐户时,您的数据应保存在文本文件中(不安全)。 登录时,代码应将输入与文件中的数据进行比较。 但是当我想为我的文件初始化变量时,Internet Explorer会显示以下错误:SCRIPT445:此对象不支持此操作。 我在这里标记的行:
//Here is the layout creation...
<script>
function login()
{
var username = document.getElementById("txtusername").value;
var kennwort = document.getElementById("txtpassword").value;
}
function register()
{
var rusername = document.getElementById("txtrusername").value;
var remail = document.getElementById("txtremail").value;
var rkennwort = document.getElementById("txtrpassword").value;
var rconfirmpassword = document.getElementById("txtrconfirmpassword").value;
if(rpassword!=rconfirmpassword)
{
alert(unescape("The passwords do not match!", "Error"));
return;
}
//This line creates the error
var file = new File("C:/Users/Konsicoder/Desktop/Data/data.txt");
//This line creates the error
alert("Success!", "Success");
}
</script>
答案 0 :(得分:-1)
您可能需要使用浏览器文件选择器才能首先获取本地文件的句柄,而不是提供本地文件系统路径并实例化File对象。
[http://www.html5rocks.com/en/tutorials/file/dndfiles/][1] [使用文件API在JavaScript中读取文件] [1]
这是SO上的一篇文章,详细介绍了如何实例化File对象: How to instantiate a File object in JavaScript?