본문 바로가기

전체 글

JSTL i18n capable formatting 라이브러리2 - JSTL i18n capable formatting 라이브러리jsp 페이지에 i18n capable formatting 라이브러리를 사용할 수 있도록 taglib 디렉티브 명시prefix : 접두사uri : i18n capable formatting 라이브러리가 존재하는 위치 1) - request.setCharacterEncoding()과 같이 전송된 데이터의 인코딩 처리 2) - 로케일 지정value : 로케일 값 지정 ex) ko, en 3) ....- 국제화를 적용을 위해 properties 파일경로 및 파일을 읽어와서 언어 적용 basename : 사용할 언어별 데이터가 key와 value의 쌍으로 작성된 properties 파일의 경로및 파일명 지정prefix : bundle 태그 내에서 .. 더보기
JSTL i18n capable formatting 라이브러리 1 (국제화) - JSTL i18n capable formatting 라이브러리의 국제화 태그를 이용해 국제화 지원jsp 페이지에 i18n capable formatting 라이브러리를 사용할 수 있도록 taglib 디렉티브 명시prefix : 접두사uri : i18n capable formatting 라이브러리가 존재하는 위치 1) ....- 국제화를 적용을 위해 properties 파일경로 및 파일을 읽어와서 언어 적용 basename : 사용할 언어별 데이터가 key와 value의 쌍으로 작성된 properties 파일의 경로및 파일명 지정prefix : bundle 태그 내에서 message 태그를 통해 value를 읽어올 때 key속성 앞에 접두사 지정 2) - 국제화를 적용한 메시지의 key에 대한 valu.. 더보기
JSTL core 라이브러리 정리 - JSTL core 라이브러리jsp 페이지에 core 라이브러리를 사용할 수 있도록 taglib 디렉티브 명시prefix : 접두사uri : core 라이브러리가 존재하는 위치 1) - 지정된 변수에 값을 할당하는 태그 target은 값을 설정하고자 하는 객체를 명시한다. target에 객체를 명시하면 명시된 객체에 값을 셋팅할 수 있다.property는 taregt에 명시된 객체의 프로퍼티를 의미하며 명시된 프로퍼티에 value에 명시한 설정값을 셋팅합니다.scope은 값을 셋팅한 범위를 의미(page,request,session,application), 생략하면 scope="page" 2) - 설정된 속성을 제거하는 태그scope은 값이 셋팅된 범위를 의미(page,request,session,ap.. 더보기
id 저장 쿠키 id 저장 쿠키 HTML 아이디 저장----------------------------------------jQuery jQuery 플러그인 jquery.cookie.js 사용 로그인 폼 아이디 저장 function saveCookie(){ var check = $('#check_save_id').is(':checked'); if(check && $('#id').val()){ $.cookie('userId',$('#id').val(), { expires:365, path:'/'}); }else{ $.cookie('userId', '', { expires: -1, path: '/' }); } } 로그인 폼 아이디 읽기 function readCookie(){ var value = $.cookie('user.. 더보기
ajax 이용해서 multipart 데이터 전송하기 ajax 이용해서 multipart 데이터 전송하기 이름 $("#myForm").submit(function(event){ //전체 데이터를 전부 지정할 때 var formData = new FormData($(this)[0]); //개별 데이터를 선택적으로 셋팅할 때 var formData = new FormData(); formData.append("name", document.getElementById('name').value); $.ajax({ url: 'writPro.do', type: 'POST', data: formData, dataType:'json', contentType: false, processData: false, success: function (data) { }, error: .. 더보기
jquery.ajax, jquery.getJSON, jquery.post 사용하기 jquery.ajax, jquery.getJSON, jquery.post 사용하기 jQuery.ajax()==================================jquery.ajax(url [,settings]) url : 요청하는 URLsettings : key와 value의 쌍으로 된 옵션 jquery.ajax([settings]) settings : key와 value의 쌍으로 된 옵션 cache (default : true, dataType이 'script', 'jsop' 일 경우 fasle) : 페이지 캐시 여부 지정data : 전송할 데이터dataType (xml,json,script,html) : 서버로부터 반환 되는 데이터의 타입 지정error : 에러시 호출되는 함수 지정succes.. 더보기
jQuery로 구현한 checkobx 전체 선택/해제 하기 jQuery로 구현한 checkobx 전체 선택/해제 하기 스크립트----------------------------------------------------- $('#chk_all').click(function(){ if($(this).is(':checked')){ $('input[name=del]').prop('checked',true); }else{ $('input[name=del]').prop('checked',false); }}); HTML----------------------------------------------------전체선택 더보기
jquery를 이용한 radio button 정보 얻기 체크된 radio 값 읽어오기$('input:radio[name=season]:checked').val(); 체크된 radio 버튼의 checked 해제$('input:radio[name=season]').attr('checked',false); "spring"이 value인 radio 버튼에 checked 설정$('input:radio[name=season]:input[value=spring]').attr('checked',true); radio 버튼 활성화$('input:radio[name=season]:input[value=spring]').attr('disabled',true); radio 버튼 비활성화$('input:radio[name=season]:input[value=spring]').att.. 더보기

반응형