JSON의 키와 가치를 얻는 방법 웹 서비스에서 JSON 결과를 얻기 위해 아래 코드를 작성했습니다. function SaveUploadedDataInDB(fileName) { $.ajax({ type: "POST", url: "SaveData.asmx/SaveFileData", data: "{'FileName':'" + fileName + "'}", contentType: "application/json; charset=utf-8", dataType: "json", success: function (response) { var result = jQuery.parseJSON(response.d); //I would like to print KEY and VALUE here.. for example con..