0

这个对吗?我怀疑在试图将这两个国家分开时,第 12 行的中间某处有错误

<script src="http://code.jquery.com/jquery-1.5.1.min.js"></script> 



<SCRIPT LANGUAGE='JavaScript'>

$.getJSON( "http://smart-ip.net/geoip-json?callback=?", function(data){

// traffic aus deutschland wird redirected, z.b. nach ...
if (data.countryCode == "CA") { 
window.location = 'canada.php';
} ,

if (data.countryCode == "AU") { 
window.location = 'australia.php';
} 

else {
// traffic aus anderen ländern wird redirected, z.b. nach ...
window.location = 'what.php';
}

})
 </SCRIPT>`
4

1 回答 1

0

删除 if 语句之间的逗号

你也可能想这样写

if () {
} else if () {
}
else () {
}
于 2013-08-11T16:43:16.807 回答