【发布时间】:2012-03-25 03:39:52
【问题描述】:
我正在构建一个简单的过滤系统,我只是想将一个字符串添加到一个数组中,并在单击链接时将其删除。我会尽量解释清楚..
$(document).ready(function(){
//so I start with an empty array
var filters [];
//when a link is clicked I want to add it to the array..
$('li a', context).click(function(e){
//so I get the value held in the data-event attribute of the clicked item example: "john"
newFilter = $(this).attr('data-event');
//this is where I get stuck, I want to test to see if the string I now have
//in 'newFilter' is in the array already or not.. if it is in the array I
//want to remove it, but if it doesnt exist in the array i want to add it..
if(jQuery.inArray(newFilter, filters){
//add to array
} else {
//remove from array
};
e.preventDefault();
});
});
【问题讨论】:
-
你可以尝试
indexof你的字符串对数组吗?如果它返回-1 你push,如果它大于-1 你pop