織夢網(wǎng)站手機(jī)端訪問PC端頁面跳轉(zhuǎn)至對應(yīng)的手機(jī)站頁面,同樣也是需要添加三處代碼,分別是在首頁、內(nèi)容頁、以及列表頁。以下代碼經(jīng)本站親自測試,可正常運(yùn)行。
首頁跳轉(zhuǎn)代碼:
<script type="text/javascript"> if(window.location.toString().indexOf('pref=padindex') != -1){ }else{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|Windows Phone|webOS|iPhone|iPod |BlackBerry/i.test(navigator.userAgent)) {window.location.href="{dede:global.cfg_wap/}/index.php";} else if(/iPad/i.test(navigator.userAgent)){}else{}}catch(e){}}}} </script>
內(nèi)容頁跳轉(zhuǎn)代碼:
<script type="text/javascript"> if(window.location.toString().indexOf('pref=padindex') != -1){ }else{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|Windows Phone|webOS|iPhone|iPod| BlackBerry/i.test(navigator.userAgent)) {window.location.href="{dede:global.cfg_wap/}/view.php?aid={dede:field.id/}";} else if(/iPad/i.test(navigator.userAgent)){}else{}}catch(e){}}}} </script>
列表頁跳轉(zhuǎn)代碼:
<script type="text/javascript"> if(window.location.toString().indexOf('pref=padindex') != -1){ }else{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|Windows Phone|webOS|iPhone|iPod| BlackBerry/i.test(navigator.userAgent)) {window.location.href="{dede:global.cfg_wap/}/list.php?tid={dede:field.id/}";} else if(/iPad/i.test(navigator.userAgent)){}else{}}catch(e){}}}} </script>
其中{dede:global.cfg_wap}為手機(jī)端的域名。