首页 > 其他 > 详细

use snippet save dom to excel

时间:2019-01-30 14:47:17      阅读:152      评论:0      收藏:0      [点我收藏+]

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.自己看效果

use snippet save dom to excel

原文:https://www.cnblogs.com/c-x-a/p/10337846.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!