// ==UserScript== // @name 赚吧精简 // @description 赚吧精简1.0.0 // @include *://*.zuanke8.com/* // @version 1.0.1 // @namespace zuanke8 // @run-at document-start // @require http://cdn.staticfile.org/jquery/1.12.4/jquery.min.js // @downloadURL none // ==/UserScript== var style = ` `; $(function() { $(".pcb").siblings().remove(); $(".plm").remove(); $("head").append(style); var totalHeight = 200; //定义一个总高度变量 function ata(){ //loa动态加载数据 totalHeight = parseFloat( $(window).height() ) + parseFloat( $(window).scrollTop() ); //浏览器的高度加上滚动条的高度 if ( $(document).height() <= totalHeight ) { //当文档的高度小于或者等于总的高度时,开始动态加载数据 $("#autopbn").click(); } } $(window).scroll(function(){ ata(); }); });