使用JQuery取得網頁內Table的資料
function RunJob(){
var TableData = getTableData($('#GridName'));
}
function getTableData(table) {
var data = [];
table.find('tr').each(function (rowIndex, r) {
var cols = [];
$(this).find('th,td').each(function (colIndex, c) {
cols.push(c.textContent);
});
data.push(cols);
});
return data;
}
參考網頁
沒有留言:
張貼留言