본문 바로가기
728x90
반응형

JSP6

[JSP, SPRING] JSP에서 java properties 파일 안의 값 가져오는 방법 1. XML spring->appServlet->servlet-context.xml 2. Properties 파일 값 설정 WebcontentURL=1234 3. JSP 값 입력 //태그 위에 작성 설정임 // 위 또는 아래 방법 사용 2023. 4. 7.
[Javascript] JavaScript) input type="file" UI 커스텀 및 파일명 출력하는법(Multiple) 1. JSP => input file 선언 및 label로 input file 연동 파일 업로드하기 2. CSS => input file을 깔끔하게 커스텀하기위한 CSS 소스 3.JS window.onload=function(){ target=document.getElementById('file'); target.addEventListener('change',function(){ if(target.value.length){ // 파일 첨부인 상태일경우 파일명 출력 var fileList = ""; for(i = 0; i < target.files.length; i++){ fileList += target.files[i].name + ' '; } target2 = document.getElementById.. 2023. 3. 8.
[Javascript] 파일 첨부시 해당파일 새창에서 여는 방법 1. JSP 2. JS window.onload=function(){ target=document.getElementById('fileName'); target.addEventListener('change',function(){ if(target.value.length != 0){ // js에서는 파일 경로가 fakePath로 뜨기때문에 URL.create를 사용한다 var path = URL.createObjectURL(target.files[0]); window.open(path); // window.open으로 해당 파일을 새창으로 연다 //location.href(); $('#originName').html(target.files[0].name); }else{ $('#originName').htm.. 2023. 2. 13.
JavaScript) input type="file" UI 커스텀하기 및 파일명 출력하는법 1. JSP => input file 선언 및 label로 input file 연동 파일 업로드하기 2. CSS => input file을 깔끔하게 커스텀하기위한 CSS 소스 3. JS => 파일첨부 즉 change 시 발생하는 함수 window.onload=function(){ target=document.getElementById('file'); // file 아이디 선언 target.addEventListener('change',function(){ // change 함수 if(target.value.length){ // 파일 첨부인 상태일경우 파일명 출력 $('#originName').html(target.files[0].name); }else{ //버튼 클릭후 취소(파일 첨부 없을 경우)할때 파.. 2023. 1. 18.
728x90
반응형