<!--首页M站跳转-->
<script src='http://xxxxxxxxx.com/js/wap.js' language='javascript'></script>
<script type="text/javascript">
browserRedirect("http://m.xxxxxxxxx.com");
</script>
封面页M站跳转
<!--封面页M站跳转-->
<script src='http://xxxxxxxxx.com/js/wap.js' language='javascript'></script>
<script type="text/javascript">
browserRedirect("http://m.xxxxxxxxx.com/e/public/ClassUrl/?classid=[!--self.classid--]");
</script>
列表页M站跳转
<!--列表页M站跳转-->
<script src='http://xxxxxxxxx.com/js/wap.js' language='javascript'></script>
<script type="text/javascript">
browserRedirect("http://m.xxxxxxxxx.com/e/public/ClassUrl/?classid=[!--self.classid--]");
</script>
内容页M站跳转
<!--内容页M站跳转-->
<script src='http://xxxxxxxxx.com/js/wap.js' language='javascript'></script>
<script type="text/javascript">
browserRedirect("http://m.xxxxxxxxx.com[!--titleurl--]");
</script>
注意:需要加入的js代码
wap.js代码
function browserRedirect(url) {
var sUserAgent = navigator.userAgent.toLowerCase();
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 (bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM){
window.location.replace(url);
}
}