【发布时间】:2013-12-30 04:21:50
【问题描述】:
我有一个链接列表,它们都属于不同的组。我想要一个看起来像过滤器的东西,当按下它时只会使该组中的链接保持活动状态。
我是整个 JavaScript 游戏的新手,所以请多多包涵,因为我不完全确定它的功能是什么。
这是我正在努力完成的一个小sn-p,我希望它能够自我解释。
http://jsfiddle.net/bardsworth/QCeXV/16/
var appNames = [
["What's Your Road?", "http://www.google.com", ["F0", "F1", "F2"]],
["Career Connect", "http://www.google.com", ["F0", "F1", "F2"]],
["FastForward", "http://www.google.com", []],
["Zombie College", "http://www.google.com", ["F0", "F1", "F2"]],
["WOOP", "http://www.google.com", ["F0", "F1", "F2"]],
["I'm First", "http://www.google.com", []],
["CollegeGo", "http://www.google.com", []],
["Logrado", "http://www.google.com", []],
["KRED", "http://www.google.com", []],
["College Connect", "http://www.google.com", []],
["Tractus Insight", "http://www.google.com", []],
["PossibilityU", "http://www.google.com", []],
["ApplyFul", "http://www.google.com", []],
["Raise", "http://www.google.com", []],
["College Abacus", "http://www.google.com", ["F0", "F1", "F2"]],
["FAFSA Community", "http://www.google.com", []],
["MyCoach", "http://www.google.com", []],
["GradGuru", "http://www.google.com", []],
["Transfer Bootcamp", "http://www.google.com", []]];
for (var i = 0; i < 10; i++) {
createListHTML(i);
// mapFilter function and stuff
$("#mapFilter :checkbox").click(function () {
// at this point what is the best way to loop through all my links and only keep active those that are associated with the check marks that are active.
var a = $("a[data-" + $(this).val() + "= " + true + " ]");
//a.hide(); // but i really want an enable
/* this loops through all checked boxes which is kinda cool
$("#mapFilter :checkbox:checked").each(function()
{
//$("." + $(this).val()).show();
});
*/
});}
function createListHTML($n) {
// FACTORY
var ul = $(".appList");
var li = $('<li>').appendTo(ul);
var link = $('<a>', {
text: appNames[$n][0],
title: appNames[$n][0],
target: "_blank",
href: appNames[$n][1],
//click: function(){ BlahFunc( options.rowId );return false;}
}).appendTo(li);
/* is there a better way of adding these data attributes? i am open to being schooled as to waht is the best way */
// filters
var filterArray = appNames[$n][2];
for (var a = 0; a < filterArray.length; a++) {
link.data(filterArray[a], true)
}
}
【问题讨论】:
标签: javascript jquery filter custom-data-attribute