분류 전체보기 577

jQuery Ajax json Post

data post를 http body에 직접 하는 방법이 있다... 흔히 json post라고 하는데, 아래와 같이 처리 하면 된다. Ajax Post Json Example)Client Side) $.ajax({ url: '', type: 'post', accept: 'application/json', contentType: 'application/json; charset=utf-8', data: JSON.stringify({'list': savedData}), dataType: 'json', success: function(data) { // success handle }, error: function(jqXHR,textStatus,errorThrown) { // fail handle } }); Se..

프로그램/spring 2014.02.19

jQuery Select , Option Example

Query select 선택 값 확인하기 : from http://lanian.tistory.com/356 from 분류없음 jQuery로 선택된 값 읽기 $("#select_box option:selected").val(); $("select[name=name]").val(); jQuery로 선택된 내용 읽기 $("#select_box option:selected").text(); 선택된 위치 var index = $("#test option").index($("#test option:selected")); ------------------------------------------------------------------- // Add options to the end of a select $("#..

프로그램/jQuery 2014.02.19

[javascript] Mobile Tablet 검사하기.

브라우져에서 Mobile, Tablet 클라이언트 검사하기: 출처: 옥션. / 기기 체크 // isTablet()과 isMobile()은 HP와 SRP에서 사용 중 function isMobileDevice() { var phoneArray = new Array('samsung-', 'sch-', 'shw-', 'sph-', 'sgh-', 'lg-', 'canu', 'im-', 'ev-', 'iphone', 'nokia', 'blackberry', 'lgtelecom', 'natebrowser', 'sonyericsson', 'mobile', 'android', 'ipad'); for (i = 0; i < phoneArray.length; i++) { if (navigator.userAgent.toLow..

프로그램/script 2014.02.12

ldap search 좋은온라인 리소스

ldap 을 공부하거나, 실무에 사용하려면 조금 막막한점이 많습니다.멀더도 최근 ldap search 방법을 배우고자 고생한적이 있는데 그중 가장 많은 도움이 된 두 사이트를 소개 합니다. 1) 역시 ibm http://publib.boulder.ibm.com/infocenter/domhelp/v8r0/index.jsp?topic=%2Fcom.ibm.help.domino.admin.doc%2FDOC%2FH_EXAMPLES_EXPORTING_THE_CONTENTS_OF_AN_LDAP_DIRECTORY_2804_STEPS.html 2) 서치옵션의 명확한 설명 아래 사이트에 설명된 파라미터로 대부분의 쿼리가 가능 했습니다.http://jurjenbokma.com/ApprenticesNotes/ldapsearc..

zimbra 2014.01.14