0
我正在處理跨域的AJAX登錄,並且請求已被正確發送並獲得來自其他域的響應,但是我的onSuccess函數未被調用。 我試圖寫的onSuccess內在要求像如何使用jsonp獲得來自跨域的響應
sucess : function(){}
,但它也沒有得到調用。
我的代碼片段:
new Ajax.JSONRequest(this.preCheckUrl, {
callbackParamName: "jsoncallback",
parameters: {
userEmail: this.userEmail, userPassword: this.userPassword, format: 'json'
},
onSuccess:function(response) {
alert('hello');
} });
-Thanx。