我的页面上有多个table
s。我想从所有表中选择一个特定的列,但我无法理解我的代码的问题。
它看起来像这样:
function getTableColumnValues(){
var table, columnValue, tableId
table=document.getElementsByTagName('table');
for(l=1;l<table.length;l++){
tableId = table[l].id
if(tableId != ""){
columnValue = $(tableId+'>tbody>tr>td:nth-child(2)').each(function(){ // Here 2 is the column number of which the data I want.
$(this).text()
});
console.log('TABLE ID: ',tableId);
console.log("COLUMN VALUE: ",columnValue);
}
}
}
但我的调试器控制台显示了这一点:
TABLE ID: id_219
COLUMN VALUE: Object[]
TABLE ID: id_220
COLUMN VALUE: Object[]
TABLE ID: id_221
COLUMN VALUE: Object[]
可以将 jquery 放在 javascript 代码中吗?
请帮助我,我在哪里做错了?