我有一些代码:
var type = li.attr('type');
$('tbody tr td a', table).each(function() {
if ($(this).is('[type]') && $(this).attr('type') & type) {
$(this).show();
}
else {
$(this).hide();
}
});
它按预期工作,但有两个问题:
$('tbody tr td a[type&=' + type).show();
或类似的东西?答案 0 :(得分:1)
我认为我们可以使用钳工,例如
$.extend(
jQuery.expr[":"], {
istype: function(elem) {
return $(elem).attr('type');
}
}
);
$("li:istype").hide();
但是我需要你的html来提供最快的代码,请为我提供