在电脑和手机网站页面都对应的加上一下代码,即可完美实现电脑/手机自动识别访问
<script type="text/javascript">
if(/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))){
if(window.location.href.indexOf("?mobile")<0){
try{
if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)){
window.location.href="手机地址";
}else if(/iPad/i.test(navigator.userAgent)){
}else{
window.location.href="pc地址"
}
}catch(e){}
}
}
</script>
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END