// ==UserScript http://www.5cm.cn/bank/shanghai/ ==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://*/*
// @grant GM_xmlhttpRequest
// @grant GM_download
// @require https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js
/* globals jQuery, $, waitForKeyElements */
// ==/UserScript==
(function() {
var str="";
$('.table tr').each(function(i){
if($(this).children('td').eq(0).text()!="" && $(this).children('td').eq(1).text()!=""){
str+= $(this).children('td').eq(0).text()+"-"+$(this).children('td').eq(1).text()+"," ;
}
});
// console.log(str);
//调用↓
var shengfen
|