我正在寻找使用jQuery具有超过X行的一组表.目前,我正在做类似的事情:
$("table").each(function(){
if($(this).find("tr").length > x){
tableArray[tableArray.length] = $(this);
}
});
然后作用于tableArray的成员.
有没有更好的方法来获取这些表,也许我错过了一个不错的选择器?
谢谢
最佳答案
原文链接:https://www.f2er.com/jquery/531060.html