일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- JSTL
- 날짜
- 톰캣
- HTML5
- SSL
- 스크립트
- 호환성
- 이클립스
- Oracle
- @RequestBody
- checbox
- exception
- json
- null
- 오라클
- jquery
- 웹 플랫폼 설치 관리자
- 한글
- php
- java
- MYSQL
- switch
- html
- spring form tag
- 네이버스마트 에디터
- maven
- 전자정부 표준프레임워크
- DB
- 문자열
- RADIO
- Today
- Total
목록스크립트 (3)
개인적인 정리
자바스크립트로 파일의 확장자 및 파일 이름을 체크할 수 있다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 $(document).ready(function() { $("input:file[name='file']").change(function () { var str = $(this).val(); var fileName = str.split('\\').pop().toLowerCase(); //alert(fileName); checkFileName(fileName); }); }); function checkFileName(str){ //1. 확장자 체크 var ext = str.split('.').pop..
$('#layer_greetings').css({'left':$('.main-visual').find('img').offset().left}); $( window ).resize(function() {$('#layer_greetings').css({'left':$('.main-visual').find('img').offset().left});});
//현재시간var now = new Date(); var year= now.getFullYear(); var mon = (now.getMonth()+1)>9 ? ''+(now.getMonth()+1) : '0'+(now.getMonth()+1); var day = now.getDate()>9 ? ''+now.getDate() : '0'+now.getDate(); var hour = now.getHours()>9 ? ''+now.getHours() : '0'+now.getHours(); var min = now.getMinutes()>9 ? ''+now.getMinutes() : '0'+now.getMinutes(); var sec = now.getSeconds()>9 ? ''+now.getSeconds(..