以前记录的一个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>
网友评论