作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 jQuery 创建了一个 cookie album_like
来存储 id
数组,我想在满足某些条件时向该数组添加/推送新值,如下是我的代码
if (typeof $.cookie('album_like') == 'undefined') {
$.cookie('album_like', [data.album_id], { expires: 365, path: '/' });
} else {
var arr = [$.cookie('album_like')];
if (!($.inArray(data.album_id, arr) > 0)) {
arr.push(data.album_id);
$.cookie('album_like', arr);
}
}
当我使用firebug检查值时,我发现数组变成了["1, 2, 3, 4, 5"]
,所以代码!($.inArray( data.album_id, arr) > 0)
不起作用,我认为数组应该是 [1, 2, 3, 4, 5]
。
有人可以对我的代码提出一些建议吗?
谢谢
最佳答案
这将为您提供一个字符串作为数组条目而不是数组。
var arr = [$.cookie('album_like')];
试试这个:
var arr = $.cookie('album_like').split(', '); // split string to array
$.each(arr, function(i,v){
arr[i] = parseInt(v); // convert string array entries to ints
});
<小时/>
或者您可以使用 json 编码来存储和检索数组 jquery save json data object in cookie
$.cookie.json = true;
关于javascript - 如何使用 JavaScript/jQuery 将新值添加/推送到存储在 cookie 中的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15977599/
我是一名优秀的程序员,十分优秀!