AI帮写的微信域名防红的js

admin 站长可乐 关注 运营团队 高级会员
发表于网络技能版块
<script>
  // 获取当前访问域名
  let curHost = window.location.host;
  // 微信官方域名白名单
  let whiteList = [
    'mp.weixin.qq.com', 
    'mmbiz.qpic.cn', 
    'mmsns.qpic.cn'
  ];

  // 检查当前访问域名是否在白名单中,如果不在,则终止脚本运行
  if (!whiteList.includes(curHost)) {
    throw new Error('host not in white list!');
  }

   // 正常运行下面的代码逻辑...
</script>
评论列表 评论
发布评论

评论: AI帮写的微信域名防红的js

拖动滑块验证
»
已有0次打赏