var allItems = []
$('#currencies tbody tr').each(function(id, item) {
var oneItem = []
$(item).find('td').each(function (id, td) {
switch(id) {
case 1 :
oneItem.push($(td).find('a').text().replace(/\s+/g, ''))
break;
default:
oneItem.push($(td).text().replace(/\s+/g, ''))
}
})
allItems.push(oneItem.join('|'))
})
console.log(allItems.join('\n'))
随便写了一个,在 console 里跑吧,跑出来的结果导入到保存成 csv , 导入 Excel ,想怎么搞怎么搞。
https://gist.github.com/jswh/9f33648fe78de37a1ce1066988518488/revisions