알이즈웰
jQuery.ajaxSettings.traditional = true; 본문
jQuery로 ajax 통신 처리 시 데이터를 배열로 넘겨줄 때 설정한 것
jQuery.ajaxSettings.traditional = true;
//저장 function save(){ if(siteChk()){ var url = "/uems/mng/trendMng/trendMngSaveAjax.do"; trendGroupList = []; var trendTagList = []; $("#trendGroupList").children().each(function(){ trendGroupList.push($(this).text()); }); $("#tagList").children().each(function(){ trendTagList.push($(this).attr("id")); }); var siteId = $("select[name=searchCondition] option:selected").val(); var tgId = $(".devTrendGroup").text(); jQuery.ajaxSettings.traditional = true; $.ajax({ url: url, type: "POST", data: {trendGroupList:trendGroupList, siteId:siteId, trendTagList:trendTagList, tgId:tgId}, dataType: "json", async:false }).done (function(data) { if(data.result){ alert("저장하였습니다."); }else{ alert("실패하였습니다."); } }); } }
[참고]
http://yangyag.tistory.com/141
'Programming > Front-End' 카테고리의 다른 글
테이블 td 너비 고정 (0) | 2017.10.19 |
---|---|
disabled처리된 값은 form의 value로 안 잡힌다 (0) | 2017.09.06 |
jQuery 자식요소 seletor & li의 value 가져오기 (3) | 2017.06.06 |
jQuery 자식요소(find, children) (0) | 2017.05.29 |
jQuery selectBox에서 option text값 가져오기 (1) | 2017.05.16 |