我想獲取th的所有列值。例如在this Fiddle當我訪問th時,我想獲得該列中的所有td。從html數據中獲取列數據
$(document).ready(function(){
$('.tableizer-table th').each(function(index,val){
$('.tableizer-table tr td').eq(index).each(function (index,value) {
console.log(value);
});
});
});
上面的代碼不起作用。
如何以及當你想要的數據? – Thinker
@Thinker當我訪問th時,我想獲得所有的值。例如,在上面的html中,當我訪問'Item#\t'時,我想獲得它下面的所有列值,即'Alloy(HR)Cast - HA(10 Cr Bal Fe)(CPO)\t Metal_Alloy'等。 –