今天我創建了一個html文檔。編碼登錄和註冊網站。我的想法如下: 當你創建一個帳戶時,你的數據應該保存在一個文本文件中(不安全)。 登錄時,代碼應該將輸入與文件中的數據進行比較。 但是,當我想爲我的文件初始化變量時,Internet Explorer顯示以下錯誤:SCRIPT445:此對象不支持此操作。 標記線我這裏有:Javascript文件變量聲明/創建錯誤:此對象不支持此操作
//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>
''//不是HTML中的評論。 –