我使用以下代码进行了设备检测:
<script>
if( /Android|webOS|iPhone|iPod|BlackBerry|IEMobile/i.test(navigator.userAgent) ) {
if(window.location.hash == "#desktop"){
// Stay on desktop website
} else {
window.location = "<?php bloginfo('url'); ?>/m";
}
}
</script>
这可以使用户返回到网站的桌面版本,但是,当用户点击桌面网站上的链接然后重定向到移动网站时,会出现问题。
如果单击了View桌面链接,如何始终将#desktop
附加到所有链接?这可能吗?
答案 0 :(得分:0)
这只是一个想法,
if(window.location.hash == "#desktop"){
$(function(){
$(document).find('a').click(function(e){
e.preventDefault();
window.location.replace($(this).attr("href")+"#desktop");
});
});
}
或
if(window.location.hash == "#desktop"){
$(function(){
$(document).find('a').attr("href",$(this).attr()+"#desktop");
});
}
我认为最好的解决方案是在服务器端代码上使用SESSION。