首先,依赖jquery..
1 $('#btntb').click(function(){2 $('#tab tr').each(function(i){ // 遍历 tr3 $(this).children('td').each(function(j){ // 遍历 tr 的各个 td4 alert("第"+(i+1)+"行,第"+(j+1)+"个td的值:"+$(this).text()+"。");5 });6 });7 });
js的方法
var tb = document.getElementById('tab'); // table 的 idvar rows = tb.rows; // 获取表格所有行for(var i = 0; i
Html代码
西瓜 橙 芒果 桔子 奇异果 葡萄 西柚