2011-09-24 106 views
0

本網站未重定向到.mobi網站。那是因爲重定向腳本不在「頭部」的頂部,並且與首先被調用的其他腳本衝突?有什麼建議麼?其他人似乎認爲它只需要在頭部區域。雖然這不起作用。JQuery Mobile重定向幫助

託管公司輸入代碼,但放在底部。你認爲這是爲什麼它不重定向?我讓他們把它放在那裏,我猜他們忘了。在我要求他們再次做這件事之前,我想就這是否會導致問題提供一些意見?

<head> 
<!-- SW3 --> 

<title>Rosenhouse Group, PC, a professional tax and accounting firm in Dallas, Texas</title> 

<script type="text/javascript" language="javascript" src="/menu.js"></script> 
<script type="text/javascript"> 
adroll_adv_id = "7LYERGMOVZEPTB3B62NLZD"; 
adroll_pix_id = "KN5CT4JO5NEKLEGKBSHDQF"; 
(function() { 
var oldonload = window.onload; 
window.onload = function(){ 
    __adroll_loaded=true; 
    var scr = document.createElement("script"); 
    var host = (("https:" == document.location.protocol) ? "https://c.adroll.com" : "http://c.adroll.com"); 
    scr.setAttribute('async', 'true'); 
    scr.type = "text/javascript"; 
    scr.src = host + "/j/roundtrip.js"; 
    document.documentElement.firstChild.appendChild(scr); 
    if(oldonload){oldonload()}}; 
}()); 
</script> 
<meta http-equiv="content-type" content="text/html; charset=utf-8"> 
<link rel="icon" type="image/ico" href="favicon.ico"/> 
<script src="js/jquery-latest.js" type="text/javascript"></script> 
<script type="text/javascript"> 
    $.noConflict(); 
</script> 
<meta name="keywords" content="Rosenhouse Group, PC, L. Minton Rosenhouse, CPA, Dallas, Texas, 75252-5897, , , , , , , , , , , , , , , , , , , , , , , , , "> 

<meta name="author" content="Emochila Website Design for CPAs Lawyers and Dentists"> 

<meta name="description" content=""> 
<link rel="stylesheet" href="sb/cssfile.jsp?decider=mrosenhouse&amp;content=1500" type="text/css"> 
<script type="text/javascript">// <![CDATA[ 

var mobile = 

(/iphone|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.user 

Agent.toLowerCase())); 

if (mobile) { 

document.location = "http://www.cpadallas.mobi"; 

} 

// ]]></script> 



<meta name="google-site-verification" content="Fl04TuB3stq95hUqds8jcKHuWRjxeCjO8orCnSn1SyY" /> 
</head> 
+0

這是jQuery的需求在哪裏。 – atilkan

回答

3

看着http://www.cpadallas.com您的主要問題的源代碼是,正則表達式是多行。

你可以改變它是

 

&ltscript type="text/javascript"> 
var mobile = (/iphone|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase())); 

if (mobile) { 
    document.location = "http://www.cpadallas.mobi"; 
} 

</script> 

我會鼓勵你看看在未來更強大的重定向策略。

+0

嘿巴里你的意思只是刪除該空間,或者你是指那個和其他什麼? – user962995

+0

我只是想刪除用戶和代理之間的額外換行符 – Barry

+0

對於搜索Javascript移動重定向腳本的任何人。就是這個。謝謝巴里。 – ntgCleaner