我試圖做一個hta(html應用程序),您可以在其中添加名稱到一個數組,然後找出如果某個名稱在數組中。當我關閉並重新打開hta(或刷新html)時,沒有任何名稱被保存。我如何做到這一點,以便當我運行添加名稱的函數時,代碼將保存在名稱中的變量中。如何在hta中保存一個變量,這樣在關閉並打開hta後,它會被保存下來?
這是添加名字
var names = []
function addName(first, last){
names.push(first + " " + last)
}
function realAddName(eventObject){
var addFirstName = document.getElementById("addFirstName")//the input box for the first name
var addLastName = document.getElementById("addLastName")//the input box for the last name
addName(addFirstName.value, addLastName.value)
alert("The name you input is now added to the thing.")
}
我沒有jQuery的功能,所以不要給我使用jQuery的答案。
請幫幫我。
什麼是數據庫,我該如何使用它? – user2216996 2013-04-04 01:06:17
什麼是數據庫,如何製作一個/使用一個? – user2216996 2013-04-04 01:17:06