use snippet save dom to excel

mac2022-06-30  25

1.打开贴吧

http://tieba.baidu.com/f?ie=utf-8&kw=python&fr=search

2.打开console执行下面命令

Array.prototype.toTable = function() { var tab = ''; var th = ''; th = "<tr><th>" + keys(this[0]).join('</th><th>') + "</th></tr>"; this.forEach(function(a) { tab += "<tr><td>" + values(a).join('</td><td>') + "</td></tr>"; }); copy("<table>" + th + tab + "<table>"); }; var ar = []; $$('#thread_list > li > div > div.col2_right.j_threadlist_li_right > div.threadlist_lz.clearfix > div.threadlist_title.pull_left.j_th_tit > a') .forEach(function(a) { ar.push({ domain: a.href.split('/')[2], url: a.href, title: a.innerHTML}); }); ar.toTable();

3.打开一个excel,ctrl+v.自己看效果

转载于:https://www.cnblogs.com/c-x-a/p/10337846.html

相关资源:JAVA上百实例源码以及开源项目
最新回复(0)