-2
所以我沒有很多Javascript的經驗,但是我在過去做得很好。我有這個網站,我試圖運行'geoip'來拉兩個iso到一個特定的頁面,我已經得到完美的功能。然而,如果所述ISO完成購買,則向他們呈現謝謝頁面,但是因爲「geoip」仍然存在而消失。我試過運行一個'返回',但似乎無法得到它的竅門。在崇高的文本3看起來很好,任何幫助將非常感激。這裏是我的代碼:SyntaxError:意外的令牌else
$.ajax({
url: 'https://freegeoip.net/json/',
type: 'POST',
dataType: 'jsonp',
success: function(location) {
// If the visitor is browsing from Australia or New Zealand.
if (location.country_code == 'AU' || location.country_code == 'NZ') {
// Redirect visitor to the purchasing store.
window.location.href = 'http://example.com/order-international/';
else {
location.country_code == 'AU' || location.country_code == 'NZ' === window.location.href = 'http://example.com/thanks-international/') {
return; //stop the execution of function
} else {
//keep on going
}
}
}
});
歡迎來到Stack Overflow!正如標題文本框中的佔位符所建議的,您的問題的標題應該是問題的簡短版本,而不是「請幫助我」或類似內容。 – 2015-03-08 18:21:07
我已經清理了您的代碼格式。看看結果,我懷疑你有一對錯位的「{}」(至少,似乎還有其他問題)。 – 2015-03-08 18:24:48
使用'GET' for jsonp – charlietfl 2015-03-08 18:24:49