首页违规举报

违规举报 2026-08-04 3403

网站违规举报

此框自动填充,无需手动修改
.cate-popup-mask{ position:fixed; left:0;top:0;right:0;bottom:0; background:rgba(0,0,0,0.62); z-index:99999; display:none; overflow-y:auto; padding:30px 16px; } .cate-popup-box{ max-width:1280px; margin:0 auto; background:#fff; border-radius:8px; padding:24px; } .cate-popup-head{ display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid #eee; padding-bottom:12px; margin-bottom:20px; } .cate-close{ font-size:24px; cursor:pointer; } .cate-popup-body .row{ display: grid; grid-template-columns: repeat(5,1fr); gap:14px; } .cate-popup-body .item{ padding:12px; border:1px solid #ececec; border-radius:6px; }
×
加载中……
$(document).on('click','.cate_more_btn',function(){ let cid = $(this).attr("data-cid"); let name = $(this).closest(".part").attr("data-title"); $(".popup_title").text(name); $(".cate-popup-mask").fadeIn(200); $(".cate-popup-body").html("

正在加载栏目全部内容

"); $.get("index.php?ajax_cate=1&cid="+cid,function(html){ $(".cate-popup-body").html(html); }) }) $(document).on("click",".cate-close,.cate-popup-mask",function(e){ if(e.target !== this) return; $(".cate-popup-mask").fadeOut(200); })