我正在使用谷歌地图 API,我想做的是使用 jQuery 作为过滤器从其位置数据中删除位置
因此,如果用户单击过滤英语,则 jquery 将查找其中不包含英语的条目,然后一旦找到它们,它将删除 [ ] 及其内容。
var LocationData = [
[-33.911187337771345,18.41437339782715,"<a class=english href=http://lang.beresponsive.net/blog/2013/09/10/hello-world/>Hello world!</a>","http://lang.beresponsive.net/wp-content/uploads/2013/11/Logo.png"],
[-33.95902344617683,18.481578826904297,"<a class=french href=http://lang.beresponsive.net/blog/2012/07/30/cu-vel-suas-interpretaris-no-qui-tantas-2/>Lightbox Image</a>","http://lang.beresponsive.net/wp-content/uploads/2013/11/Logo.png"],
];
我在想类似的东西
jQuery('.filter-eng').click(function(){
//not sure what would go here to preform this.
})