본문 바로가기
jquery

jquery ajax 전송 시 array data

by 자바초보자 2015. 10. 21.
728x90

jquery ajax 전송 시  array data  가 필요한 경우

 

 

var styles = new Array();

styles[0] = "111";

 

jQuery.ajaxSettings.traditional = true;

 

   $.ajax({
    url:url,
    type:"post",
    data:{
     "html":html,
     "styles":styles
    },
    cache:false,
    async:false,
    success:function(d){
     if(d.result){
      alert("수정되었습니다.");
     }else{
      alert("실패하였습니다.");
     }
    }
   });
   

 

jQuery.ajaxSettings.traditional = true;

=> 설정해야 서버단에서 String[]로 받을 수 있다.

 

 

728x90

'jquery' 카테고리의 다른 글

.wrap()  (0) 2015.12.02
현재 선택된 object의 tagname 변경  (0) 2015.11.24
jquery 라이브러리 동적 로딩  (0) 2015.11.16
jquery iframe 부모에 접근  (0) 2015.10.12
$(this) 내 자신 태그까지 가져오기  (0) 2015.10.08