// ==UserScript== // @name 富投网链接 // @namespace Violentmonkey Scripts // @description 富投网链接其他网站数据 // @match http://www.richvest.com/index.php?m=cb* // @version 20200330 // @grant none // @downloadURL https://update.greasyfork.icu/scripts/398967/%E5%AF%8C%E6%8A%95%E7%BD%91%E9%93%BE%E6%8E%A5.user.js // @updateURL https://update.greasyfork.icu/scripts/398967/%E5%AF%8C%E6%8A%95%E7%BD%91%E9%93%BE%E6%8E%A5.meta.js // ==/UserScript== (function () { //code here $(document).on("mouseenter", "div.J_pop_card", function () { if($(this).find('#rv_div').length>0){ return } // 可转债代码 let code_cb=$(this).attr('id').replace(/J_user_card_[a-z]{2}/g,''); //正股代码 let code_sh=$($(this).find('p.num > a:nth-child(11)')[0]).attr('href'); code_sh=code_sh.substring(code_sh.length-6) //console.log(code_sh); if (code_sh.startsWith('6')) { market='sh'; } else{ market='sz'; } let p=$(this).find('.num')[0]; let div='
' $(p).append(div); // console.log(p); }) })();