<script>
/*ajax 기본 형식*/
$.ajax({
type : 'POST',
url : 'url주소',
data : 데이터,
error : function(error){
alert("error");
},
success : function(data){
alert("success");
},
complete : function(){
alert("complete");
}
});
</script>
댓글
댓글 쓰기