$.ajax({
beforeSend:
function
(){
$(
"#showMes"
).html(
'loading...'
);
},
success:
function
(){
$(
"#showMes"
).html(
''
);
}
});
$.ajax({ beforeSend: function (){ $( "#showMes" ).html( 'loading...' ); }, success: function (){ $( "#showMes" ).html( '' ); } }); ![]() |