前端之家收集整理的这篇文章主要介绍了
标准AJAX请求DEMO,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$.ajax({
type: 'POST',url: 'index.PHP',data: {
'ajax' : '1','action' : $('#action').val()
},async: true,cache: false,dataType: 'html',beforeSend: function(data)
{
$('#div').html('正在操作...');
},success: function(data)
{
$('#div').html(data);
},complete : function(data)
{
alert(data);
},error: function(XMLHttpRequest,textStatus,errorThrown)
{
alert("TECHNICAL ERROR.\n\ntextStatus: '" + textStatus + "'\nerrorThrown: '" + errorThrown + "'\nresponseText:\n" + XMLHttpRequest.responseText);
}
});
原文链接:https://www.f2er.com/ajax/165642.html