我有一个插件(https://github.com/bjorn2404/jQuery-Store-Locator-Plugin),它使用代码创建一个多维数组:
locationset[i] = new Array (distance, name, lat, lng, address, address2, city, state, postal, phone, web, hours1, hours2, hours3); i++;
我需要根据距离过滤它(假设它应该小于10)。
有办法做到这一点吗?
谢谢!
答案 0 :(得分:0)
var filtered_array = $.grep(locationset, function(value) {
return value[0] < 10;
});
您应该使用grep,因为这是它的设计目标。