I need to get all the td values into a string array. Following is my code
var tr = "#tblPurchaseOrders tr.PO1";
$(tr).each(function(index, tr) {
var lines = $(tr + " td").map(function(ind, td) {
var ret = {};
ret[ind] = $(td).text();
return ret;
}).get();
// I need to some more thing here
// I need to store all the td values in to lines variable.. This is not working for me.
// Am I missing some thing?
});
Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…