function User()
{
this.username = null;
this.password = null;
this.first = null;
this.last = null;
}
var userList = new Array();
userList[0] = new User();
userList[1] = new User();
userList[2] = new User();
userList[0].username = "Georgie19";
userList[1].username = "PaulC-87";
uesrList[2].username = "JamesHat";
userList[0].password = "georgepass101";
userList[1].password = "adminpaul-13";
userList[2].password = "jamesH7";
userList[0].first = "George";
userList[1].first = "Paul";
userList[2].first = "James";
userList[0].last = "Hordin";
userList[1].last = "Corman";
userList[2].last = "Haquel";
document.write(userList[0].username);
當我把它放入我的瀏覽器時,它會出現空白。我試圖擺脫我不使用的東西,它會自動工作。我真的無法弄清楚。我懷疑這是一個語法錯誤,我根本無法找到,請幫助。 PS:這不是我的HTML不會打印對象屬性
* 「我試圖擺脫我不使用的東西」 *,哪些東西? – JCOC611
'uesrList'真的是你在控制檯上試過的嗎? (第一個塊分配給'.username','uesrList [2] .username = ...') –
另外,不確定你的應用程序到底是什麼,但知道在JavaScript中以純文本存儲密碼等同於告訴用戶每個人的密碼都是安全的。 – JCOC611