代码:

<script type="text/javascript"> 
var system = { 
win: false, 
mac: false,
xll: false
};
var p = navigator.platform;
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) {        window.location.href = "http://www.cnblogs.com";  } 
else 
{}
</script>

可能有闪烁的效果 原因是浏览器的渲染原理 记得放前面 

相关文章:

  • 2021-11-26
  • 2021-10-15
  • 2022-01-10
  • 2022-12-23
  • 2022-12-23
  • 2021-11-11
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案