很多企业网站都需要作一个手机版,所有网站手机和电脑都可以打开,只是现在的智能手机不能很好的兼容电脑版的网页。手机版的网站需要简单,以文字为主,才能很好的兼容。可以在网站的首页设置一个程序来判断用户是手机端还是电脑。如果是手机端,直接中转到手机端 。如果是PC端 直接中转到PC端。
在网站的首页插入入下代码。
<script type='text/javascript'>
function browserRedirect() {
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == 'ipad';
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == 'iphone os';
var bIsMidp = sUserAgent.match(/midp/i) == 'midp';
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == 'rv:1.2.3.4';
var bIsUc = sUserAgent.match(/ucweb/i) == 'ucweb';
var bIsAndroid = sUserAgent.match(/android/i) == 'android';
var bIsCE = sUserAgent.match(/windows ce/i) == 'windows ce';
var bIsWM = sUserAgent.match(/windows mobile/i) == 'windows mobile';
if (!(bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) ){
window.location.href=B页面;
}
}
browserRedirect();
</script>
<script type='text/javascript'>uaredirect('<A href='http://www.bcdy.net/wap/','http://www.bcdy.net/index.html');http://www.bcdy.net/wap/','http://www.bcdy.net/index.html');</script>
<meta http-equiv='Content-Type' content='text/html; charset=gb2312' />