我们使用Imperial CMS制作了移动版和PC版。我们如何将它们互连起来?例如,当我们使用手机访问PC版时,如何自动跳转到手机版?方法如下: 第一步:我们新建一个js文件,你可以随意命名,路径也可以。 js代码如下: functionbrowserRedirect(url){varsUserAgent=navigator.userAgent.toLowerCase();varbIsIphoneOs=sUserAgent.match(/iphoneos/i)=='iphoneos';varbIsMidp=sUserAgent.match(/midp/i)=='midp';varbIsUc7=sUserAgent.match(/rv:1.2.3.4/i)=='rv:1.2.3.4';varbIsUc=sUserAgent.match(/ucweb/i)=='ucweb';varbIsAndroid=sUserAgent.match(/android/i)=='android';varbIsCE=sUserAgent.match(/windowsce/i)=='windowsce';varbIsWM=sUserAgent.match(/windowsmobile/i)=='windowsmobile';if (bIsIphoneOs||bIsMidp||bIsUc7||bIsUc||bIsAndroid||bIsCE||bIsWM){window.location.replace(url);}}我将js命名为m.js,放在根目录下,复制将以下代码放入对应的模板中即可跳转到首页scriptsrc='http://www.daixiao360.cn/m.js'language='javascript'/scriptscripttype='text/javascript'browserRedirect('http://m.daixiao360.cn/'); /script封面页和列表页跳转scriptsrc='http://www.daixiao360.cn/m.js'language='javascript'/scriptscripttype='text/javascript'browserRedirect('http://m.daixiao360.cn/e/public /ClassUrl/? classid=3');/脚本内容页面跳转scriptsrc='http://www.daixiao360.cn/m.js'language='javascript'/scriptscripttype='text/javascript'browserRedirect('http://m .daixiao360.cn/news/12044.html');/script 注意:记得将上面代码中的域名和路径替换为您的域名和文件路径。