标签:android style blog http java color
<script type="text/javascript">
var browser = {
versions: function() {
var u = navigator.userAgent, app = navigator.appVersion;
return {
//移动终端浏览器版本信息
mobile: (!!u.match(/AppleWebKit.*Mobile/) || !!u.match(/Windows Phone/) || !!u.match(/Android/) || !!u.match(/MQQBrowser/)) && !u.match(/iPad/) //是否为移动终端
};
}()
};
if (browser.versions.mobile) {
window.location.href = "http://m.baidu.com";
} else {
window.location.href = "http://www.baidu.com";
}
</script>
根据浏览器跳转到手机网站还是电脑网站,布布扣,bubuko.com
标签:android style blog http java color
原文地址:http://www.cnblogs.com/yxlblogs/p/3837416.html