请问,适配移动端静态URL应该使用什么标签? <script type="text/javascript"> var mobileAgent = new Array("iphone", "ipod", "ipad", "android", "mobile", "blackberry", "webos", "incognito", "webmate", "bada", "nokia", "lg", "ucweb", "skyfire"); var browser = navigator.userAgent.toLowerCase(); var isMobile = false; for (var i=0; i<mobileAgent.length; i++){ if (browser.indexOf(mobileAgent[i])!=-1){ isMobile = true; location.href = 'http://m.meinvii.com/e/action/ShowInfo.php?classid=[!--classid--]&id=[!--id--]'; break; } } </script>
|