对于做漫画的来站长来说pc端都不太喜欢开放出来,因为作为用户来说很少有在pc端浏览漫画的习惯。都是以移动终端浏览为主,pc端默认都是同行采集内容的主要方法。针对这种情况呢,我们就可以用一些小技巧,来直接屏蔽掉,今天呢就给大家带来一个js直接屏蔽跳转的小方法。

<script type="text/javascript">
  var system = {};
  var p = navigator.platform;
  var u = navigator.userAgent;

  system.win = p.indexOf("Win") == 0;
  system.mac = p.indexOf("Mac") == 0;
  system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);
  if (system.win || system.mac || system.xll) {//如果是PC转
    if (u.indexOf('Windows Phone iPad') > -1) {  //win手机端

    }else {
      window.location.href = "https://www.baidu.com/";
    }
  }
</script>

此代码直接加在网页任何一个位置就可以实现了,默认访问pc端url直接会进行跳转。

相关文章