[JSP] Ajax, Json 기본구조
Ajax 구성 $.ajax({ type: "POST", url: "", datatype: "json", async: false, data: $("#Form명").serialize(), complete: function(result){ alert(result.responseJson.list명); //호출된 값이 다건row일 경우 alert(result.항목명); //호출된 값이 한row일 경우 } }); Json 구성 (주로 Object를 이용해 데이터 전달) String: "문자" // "1"은 String Number: 1 2 3 Array: [ ] // [ , , , ] Object: { } // {"firstName":"John", "lastName":"Doe"} True: true False: f..