쓸만한 주저리

jQeury Ajax 예제

봄돌73 2015. 11. 3. 11:40

$.ajax({      

  type:'POST',  

  url:url,      

  data:{

id1:val1,

id2:val2

  },      

  success:function(html){

$('#animated_gif').hide();

$('#result').html(html);      

  },   

  beforeSend:function(){

$('#animated_gif').show();

  },  

  error:function(e){  

    alert(e.responseText);  

  }  

});