金投快讯

调整网页布局,方便手动复制。

目前為 2018-08-24 提交的版本,檢視 最新版本

// ==UserScript==
// @name         金投快讯
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  调整网页布局,方便手动复制。
// @author       陈庚
// @match        https://kuaixun.cngold.org/
// @grant        none
// @require      http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
// ==/UserScript==

(function () {
    'use strict';

    $(".dianzan").remove();
    $("#listTable").find("td.item-news").find(".cont").each(function(){
        //alert($(this).find("a").attr("href"));
        $(this).prepend("<div>金投快讯</div>");
        $(this).append("<div>"+$(this).find("a").attr("href")+"</div>");
    });
    
})();