模板首先有css,htm文檔,Js文件等
做好這些后,命名非常的重要,比如首頁模板是index.htm,那么手機站的首頁模板名字必須為index_m.htm,其他的也是必須在后面加上_m
代碼部分,欄目的鏈接代碼,我們電腦站一般是用[field:typeurl/],手機站則是list.php?tid=[field:id/]
文章鏈接的代碼,電腦端一般是[field:arcurl/],手機端是view.php?aid=[field:id/]
注意手機端模板調用的時候要調用帶m的
可在電腦端模板加如下代碼,實現手機打開網站自動跳轉到m文件夾,實現自動跳轉到手機端
<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="http://www.你的鏈接.com/m";
}else if(/iPad/i.test(navigator.userAgent)){
window.location.href="http://www.你的鏈接.com/m";
}else{
window.location.href="http://www.你的鏈接.com/m"
}
}catch(e){}
}
}
</script>
訪問m文件夾的時候會自動生成一個index.html,這個不會自動更新,有時更新后需要手動刪去,比較麻煩