宽度较小跳转m站

2018-03-22  本文已影响20人  老胡聊聊天

以前记录的一个js,根据页面宽度跳转,不过现在都用css的media来实现自适应了吧
<script type="text/javascript">
var autoRedirect=function(){
var w=window.screen.width;
if (parseInt(w) < 960 && location.href.indexOf("/m/") < 0) {
location.href="/m"+location.pathname;
}
};
autoRedirect();
window.onresize=function(){
autoRedirect();
};
</script>

上一篇下一篇

猜你喜欢

热点阅读