如何将表格单元格值存储在jquery数组中?
答案 0 :(得分:5)
遍历每个表格单元格并将其值推送到数组中,例如,您具有类似
的表格结构<table>
<tr>
<td>improve your</td>
</tr>
<tr>
<td>accept rate plz!</td>
</tr>
</table>
你可以做到
var arr=[];
$("td").each(function(){
arr.push($(this).text());
});
$.each(arr,function(index,value){
alert(arr[index]);
});
答案 1 :(得分:2)
tableArr = new Array();
$('table td').each(function(){
tableArr.push($(this).text());
});
答案 2 :(得分:1)
$('#mytable').map(function() {
var data_array = $(this);
});
你的桌子:
<table id="mytable">
<tr>
<td>improve your</td>
</tr>
<tr>
<td>accept rate plz!</td>
</tr>
答案 3 :(得分:1)
$qrtaskdeviceid = DB::table('qrtasks_devices')
->select('id')
->Where('deviceid', $pumpid)
->Where('devicetype', 'pump')
->get();