Empty Result

购物车
优惠劵
搜索
// 等待圈子内容Vue渲染完成,替换 #标签 为可点击链接 function replaceCircleHashTag(){ let cont = document.querySelector('.entry-content.pianli'); if(!cont) return; let html = cont.innerHTML; // 匹配 #汉字/字符 格式 html = html.replace(/#([^s#]+)/g,'#$1'); cont.innerHTML = html; } // 定时检测,等Vue渲染完再执行 setInterval(function(){ replaceCircleHashTag(); },800); .entry-content.pianli a { pointer-events: auto !important; } .hashtag-link { color: #0073aa !important; text-decoration: underline !important; }