온라인상담

방문상담 예약

01 지점선택
01

지점선택

상담 신청할 캠퍼스를 선택해 주세요.
02 학과·과정선택
02

학과·과정선택

학과·과정 선택이 어렵다면 [일반문의]를 선택해 주세요.
    03 신청자 정보
    03

    신청자 정보

    신청정보가 맞는지 반드시 확인해 주세요.
    • 인천부평역
    • 일반문의
    • - -
    보기
    popupAlertLayer(StringUtils.nl2br(successMessage), function () { if (urlAfterSuccess) { location.href = urlAfterSuccess; } else if (clickElementAfterSuccess) { $(clickElementAfterSuccess).trigger("click"); } else if (functionAfterSuccess) { eval(functionAfterSuccess); } }); }) .fail(function (jqXHR) { printApiErrorInfo(jqXHR); }) .always(function () {}); }); } }); }); popupAlertLayer(StringUtils.nl2br(successMessage), function () { console.log("코드 추가 테스트"); if(window.wcs){ if(!wcs_add) var wcs_add = {}; wcs_add['wa'] = 's_5119cd769cb2'; var _conv = {}; _conv.type = 'lead'; wcs.trans(_conv); } if (urlAfterSuccess) { location.href = urlAfterSuccess; } else if (clickElementAfterSuccess) { $(clickElementAfterSuccess).trigger("click"); } else if (functionAfterSuccess) { eval(functionAfterSuccess); } }); }) .fail(function (jqXHR) { printApiErrorInfo(jqXHR); }) .always(function () {}); }); } }); $('#fmOnlineCounseling input[name=campusSeq]:checked').trigger('click'); }); function showCampusMap(markerHtml, latitude, longitude) { if (typeof kakao === 'undefined') { return; } var mapContainer = document.getElementById('map'), // 지도를 표시할 div mapOption = { center: new kakao.maps.LatLng(latitude, longitude), // 지도의 중심좌표 level: 4 // 지도의 확대 레벨 }; var map = new kakao.maps.Map(mapContainer, mapOption); // 지도를 생성합니다 var imageSrc = "/assets/front/images/sub/map_pin.svg", // 마커이미지의 주소입니다 imageSize = new kakao.maps.Size(101, 65), // 마커이미지의 크기입니다 imageOption = {offset: new kakao.maps.Point(27, 69)}; // 마커이미지의 옵션입니다. 마커의 좌표와 일치시킬 이미지 안에서의 좌표를 설정합니다. // 마커의 이미지정보를 가지고 있는 마커이미지를 생성합니다 var markerImage = new kakao.maps.MarkerImage(imageSrc, imageSize, imageOption), markerPosition = new kakao.maps.LatLng(latitude, longitude); // 마커가 표시될 위치입니다 // 마커를 생성합니다 var marker = new kakao.maps.Marker({ position: markerPosition, //image: markerImage, // 마커이미지 설정 }); // 마커가 지도 위에 표시되도록 설정합니다 marker.setMap(map); var iwContent = markerHtml, // 인포윈도우에 표출될 내용으로 HTML 문자열이나 document element가 가능합니다 iwPosition = new kakao.maps.LatLng(latitude, longitude); //인포윈도우 표시 위치입니다 // 인포윈도우를 생성합니다 var infowindow = new kakao.maps.InfoWindow({ position: iwPosition, content: iwContent, }); // 마커 위에 인포윈도우를 표시합니다. 두번째 파라미터인 marker를 넣어주지 않으면 지도 위에 표시됩니다 infowindow.open(map, marker); } function retrieveCourseList() { if (_currentCounselingCouseCateSeq != '' && _currentCounselingCouseCateSeq != '0') { var param = {ps: 0, pg: 1, _cc: _currentCounselingCampusCode, sc: _currentCounselingCouseCateSeq, mc: _currentCounselingCouseTypeGroupSeq} $.ajax({ type: 'GET', data: param, url: '/api/front/'+_currentCounselingCampusCode+'/v1/education/courses', beforeSend: null, }).done(function (result) { $('#ulCourseList').html(''); if (result.data.list.length > 0) { var $list = []; $.each(result.data.list, function(index, course) { var $li = $('
  • '); $li.find('input[name=courseSeqs]').val(course.seq); $li.find('div.title').html(course.name); $list.push($li); }); $('#ulCourseList').append($list); } }) .fail(function (xhr) { printApiErrorInfo(xhr); }) .always(function () {}); } }