일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오라클
- HTML5
- 문자열
- maven
- php
- 톰캣
- @RequestBody
- Oracle
- 호환성
- html
- 한글
- 네이버스마트 에디터
- spring form tag
- jquery
- MYSQL
- switch
- 날짜
- checbox
- DB
- exception
- SSL
- JSTL
- 전자정부 표준프레임워크
- RADIO
- json
- 스크립트
- 이클립스
- null
- 웹 플랫폼 설치 관리자
- java
- 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(..