美文网首页
宽度较小跳转m站

宽度较小跳转m站

作者: 老胡聊聊天 | 来源:发表于2018-03-22 10:55 被阅读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>

相关文章

网友评论

      本文标题:宽度较小跳转m站

      本文链接:https://www.haomeiwen.com/subject/uezgfftx.html