0
我想使用cookie記住數組中的所有值,但不知道如何。我也使用js-cookies。使用cookie記住數組中的所有值 - javascript
Here is my code:
var usernames = new Array();
var input = $('#input').val();
usernames.push(input);
// each time something is inputted, it'll be saved to the
// array usernames. I want it so that when refreshed, all
// of the inputs remain in 'usernames'
alert(usernames);
要保存的Cookie使用'Cookies.set( '用戶',JSON.stringify(用戶名));'和加載使用'用戶名= JSON.parse(Cookies.get( '用戶'));' – jcubic
爲什麼選擇cookies?它們不必要地誇大HTTP請求和響應的大小。請查看[網絡存儲](http://www.w3.org/TR/webstorage/),它幾乎得到了普遍支持(並且在沒有lib的情況下易於使用)。 –
@charlietfl他說他使用js-cookies。 – jcubic