pc与手机端的这种自动识别代码对优化有影响吗?
var url="
http://testm.cnyou.com/index.php?m=Car&a=show&id=50";
if(!url){
url="
http://testm.cnyou.com";
}
$.ajax({
url:"/index.php?&a=isMobile",
type:"POST",
dataType:'json',
success:function(data){
if(data['client']=='wap'){
window.location.href=url;
}
},
error:function() {
alert("通讯异常,请刷新页面!");
}
});