0
私は自分自身の中でテーブルを再現したいと思います。しかし、それは動作していません。私がパラメータを渡すと、それは間違ったり、より良くなることはありません。各jqueryにそれぞれ反復する
$('table tr').each(function() {
var tr = $(this)
var nivel = parseInt(tr.find('td:eq(1)').text());
var item = parseInt(tr.find('td:eq(0)').text());
if (nivel > 3) {
tr.closest('tr').css({ "display": "none" });
}
$('table tr').each(function (item) {
var itemPai = parseInt($(this).find('td:eq(2)').text());
if (item == itemPai) {
console.log("Tem filhos");
$(this).closest('tr').find('a.toggler').css({ "display": "normal" });
} else {
$(this).closest('tr').find('a.toggler').css({ "display": "" });
}
});
});
? – guyaloni
例を挙げることはできますか? – Itamar
'tr(cl) '(cl)'と同じです)' tr.closest( 'tr') 'は機能的には' tr ' – Jocie