トップページ > jQuery > Ajax

 	$.ajax({
 		url: "http://example.com/",
 		type: "POST",
 		cache: false,
 		dataType: "json",
 		data: {"test" : 123 },
 		success: function(data, dataType){
 		},
 		error: function(XMLHttpRequest, textStatus, errorThrown){
 		},
 		complete: function(XMLHttpRequest, textStatus){
 		}
 	});
最終更新:2014年02月06日 16:58