自动跳转手机版和电脑版html代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动跳转手机版和电脑版html代码相关的知识,希望对你有一定的参考价值。

我一个网站准备弄了手机版,想要在电脑版的设置手机登陆自动跳转到手机版,主页是index.html,跳转到二级域名wap.html,请问要怎样弄,最好有html代码,谢谢!

var browser = 
versions : function() 
var u = navigator.userAgent, app = navigator.appVersion;
return //移动终端浏览器版本信息                                                              
mobile : (!!u.match(/AppleWebKit.*Mobile/) || !!u.match(/Windows Phone/) || !!u.match(/android/) || !!u.match(/MQQBrowser/)) && !u.match(/iPad/)//是否为移动终端                                 
;
()

if(browser.versions.mobile)
 window.location.href="http://www.xxx.com/wap.html";

加入index.html。

参考技术A var browser =
versions : function()
var u = navigator.userAgent, app = navigator.appVersion;
return //移动终端浏览器版本信息
mobile : (!!u.match(/AppleWebKit.*Mobile/) || !!u.match(/Windows Phone/) || !!u.match(/Android/) || !!u.match(/MQQBrowser/)) && !u.match(/iPad/)//是否为移动终端
;
()

if(browser.versions.mobile)
window.location.href="<a href="http://www.xxx.com/wap.html";" target="_blank">http://www.xxx.com/wap.html";</a>

织梦系统-手机端搜索页面跳转到电脑端问题解决方法

使用dedecms最新程序移动版的童鞋如果遇到,手机版搜索结果跳转到的是电脑版搜索结果页面去;

解决方法

移动版模板搜索代码中要带有(下面标红的代码)

<form name="formsearch" action="/plus/search.php">
    <input type="hidden" name="pagesize" value="15">
    <input type="hidden" name="kwtype" value="0"/>
    <input type="hidden" name="mobile" value="1" />
    <input name="q" type="text" placeholder="输入关键词">
    <button type="submit">搜索</button>
</form>

然后打开 \plus\search.php 找到

$mid = (isset($mid) && is_numeric($mid)) ? $mid : 0;

在它的下面加入

if ( $mobile==1 )
{
    define(‘DEDEMOB‘, ‘Y‘);
}

移动版的搜索结果模板就是search_m.htm,搜索结果就可以显示为移动版了

以上是关于自动跳转手机版和电脑版html代码的主要内容,如果未能解决你的问题,请参考以下文章

手机访问PC网站自动跳转到手机版

怎样判断手机端和电脑端自动跳转到各自的页面

怎么让我设置的网页自动跳转到另外的网页?

百度判断手机终端并自动跳转uaredirect.js代码及使用实例

手机访问PC网站自动跳转到手机网站代码

php如何判断电脑访问还是手机访问?