我制作了网站的wap版,用了咱们的代码
<script type="text/javascript">
var pc_siteurl="http://www.pageadmin.net/";//改为你pc网站首页地址
var wap_siteurl="http://www.pageadmin.net/wap"; //改为你手机网站首页地址
if(location.href.indexOf("fromwap")>0)
{
SetCookie("viewpc","1");
}
if(!IsPC() && GetCookie("viewpc")!="1" && location.href==pc_siteurl)
{
location.href=wap_siteurl;
}
</script>
我把代码插入到了尾部
但是我用手机测试不会跳转,请问是哪里出了错误!