1
我已經包含了所需的文件:不能發佈使用AJAX英特爾XDK
,但似乎無法讓我的AJAX後提交。似乎事件在帖子前停止。我正在開發一個使用IntelXDK的應用程序,並沒有很多關於如何使AJAX後期工作的細節...不知道我錯過了什麼。有任何想法嗎?
我的ajax:
$.ajax({
url : 'http://xx.xxx.xx.x/check_access.php',
type: 'POST',
data : {'thisusername':thisusername, 'thispassword':thispassword},
dataType: 'Text',
success: function(data, textStatus, jqXHR)
{
if(data==1){
localStorage.setItem("username2", thisusername);
location.assign("./community-home.html");
} else {
function funcError1() {
var iframe5 = document.createElement("IFRAME");
iframe5.setAttribute("src", 'data:text/plain,');
document.documentElement.appendChild(iframe5);
window.frames[0].window.alert('Username or Password does not exist.');
iframe5.parentNode.removeChild(iframe5);
}
funcError1();
}
},
error: function(){
//$("#user-result").html("Username available!");
function funcError() {
var iframe4 = document.createElement("IFRAME");
iframe4.setAttribute("src", 'data:text/plain,');
document.documentElement.appendChild(iframe4);
window.frames[0].window.alert('Something went wrong. Close the application and try again');
iframe4.parentNode.removeChild(iframe4);
}
funcError();
console.log('There was an error');
}
});
return false;
}