// ==UserScript== // @name zcool // @description ZD-隐藏多余元素 // @namespace https://www.zcool.com.cn/ // @version 0.1 // @author You // @match https://www.zcool.com.cn/* // @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js // @run-at document-start // @downloadURL https://update.greasyfork.icu/scripts/438116/zcool.user.js // @updateURL https://update.greasyfork.icu/scripts/438116/zcool.meta.js // ==/UserScript== (function() { //初始CSS (document.head || document.documentElement).insertAdjacentHTML('beforeend', ' '); $(function() { var imgSum = $('.photo-information-content').length; for (var i = 0; i <= imgSum; i++) { var ssrc= ($('.photo-information-content').eq(i).children('img')[0].src).replace (/(.*)@.*/, '$1'); $('.photo-information-content').eq(i).prepend('
') } $(".photo-information-content img").click(function(){ var imgsrc = this.src; alert(imgsrc) }) $('.downbutton').click(function(){ var src1 = $(this).parent().children('img')[0].src; console.log(src1.replace (/(.*)@.*/, '$1')) }) }); })();