したがって、私の質問が尋ねたように: is $.ajax() jQuery の通常のコードを短縮する方法 (私の質問は単に構造に関するものであるため、これらは両方とも異なる例です) は
$.ajax(
{url:"index.php/a",
type:"POST",
contentType:"application/json; charset=utf-8",
data:{some_string:"blabla"},
dataType:"json",
success:function(data){
alert(data);
},
error:function(a,b,c){
}
});
と同じ
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax_info.txt",true);
xmlhttp.send();
}