用戶移動端訪問pc站時,自動跳轉(zhuǎn)到移動站點(diǎn)
- 分類:博文-IT資訊
- 發(fā)布于 2016年5月06日 星期五 22:42
- 作者:Super User
- 點(diǎn)擊數(shù):7590
用js判斷當(dāng)前瀏覽器的類型:navigator.userAgent ;然后跳轉(zhuǎn)到手機(jī)網(wǎng)站路徑實(shí)現(xiàn):
<script?type="text/javascript">
//?JavaScript?Document
function?urlredirect()?{
????var?sUserAgent?=?navigator.userAgent.toLowerCase();?
????if?((sUserAgent.match(/(ipod|iphone?os|midp|ucweb|android|windows?ce|windows?mobile)/i)))?{
????????//?PC跳轉(zhuǎn)移動端
????????var?thisUrl?=?window.location.href;
????????window.location.href?=?thisUrl.substr(0,thisUrl.lastIndexOf('/')+1)+'mobile/';?//跳轉(zhuǎn)為網(wǎng)址后面加mobile的路徑,如:ylxmfbj.com/mobile
?????????
????}
}
urlredirect();
</script>