码迷,mamicode.com
首页 > 其他好文 > 详细

use snippet save dom to excel

时间:2019-01-30 16:09:41      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:utf-8   split   key   amp   use   Fix   prototype   code   this   

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

标签:utf-8   split   key   amp   use   Fix   prototype   code   this   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!