我正在使用 HTML5。我想用 AJAX 调用 API。但是,执行此操作并不成功。请帮助我如何使用它。我想实现这个代码PhoneGap。如果有任何问题或最佳逻辑,请建议我...
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.1.min.js"></script>
<script>
function loadXMLDoc()
{
alert("okey");
$.ajax({
type: 'GET',
url:'http://www.internationalprom.com/mobile/ipa.php',
data:{ft:'get',cat:'gallery',action:'top100'},
success: onsuccess,
error : onerror,
});
function onsuccess(data){
alert("success 1: "+ data );
// if got success then How i retrive Data from here?
}
function onerror(data){
alert("error 1 :"+data);
}
}
</script>
</head>
<body>
<h2>My CD Collection:</h2>
<div id="myDiv"></div>
<button type="button" onclick="loadXMLDoc()">Get my CD collection</button>
</body>
</html>
谢谢...