*(37)
-
jQuery : datepicker , datetimepicker [ 날짜선택기, 시간선택기 ] jQuery UI
simple datetime picker $(function() { $('.datepicker').appendDtpicker({ 'locale' : 'ko', // 한글화 'autodateOnStart' : false, // 초기값 x 'dateOnly' : true, // 시간 선택 공간 x "closeOnSelected" : true // 선택하면 선택창 x }); $('.datetimepicker').appendDtpicker({ 'locale' : 'ko', // 한글화 'autodateOnStart' : false, // 초기값 x 'timelistScroll' : false, // 시간 자동 스크롤 x 'closeOnSelected' : true, // 선택하면 선택창 x 'minuteInte..
2017.12.31 -
javascript : 유효성 검사, 정규식 [ 날짜, 날짜+시간 ]
매번 할 때마다 검색해서 진행하다가 드디어 올리는 게시글입니다. "yyyy-mm-dd"var date_pattern = /^(19|20)\d{2}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[0-1])$/; if(!date_pattern .test(form.name.value)){return;} "yyyy-mm-dd HH:MM"var datetime_pattern = /^(19|20)\d{2}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[0-1]) (0[0-9]|1[0-9]|2[0-3]):([0-5][0-9])$/; if(!datetime_pattern .test(form.name.value)){return;} 1. 규칙 : 문장 앞, 뒤에 '/' 슬래쉬로 감싼다...
2017.12.31 -
■ Zxing을 이용한 QRcode 스캐너 예제 [스캔, 생성] 2017.11.15
-
■ 가상머신(Virtual Box)에 웹서버 구축하기 + CentOS7
1. virtualbox 설치 2. CentOS 7 버전 iso 다운로드 (minial) 3. 이미지 넣어서 부팅시키고 * yum 설치 dhclient 4. 의존성 라이브러리 설치 rpm -qa libjpeg* libpng* freetype* gd-* gcc gcc-c++ gdbm-devel libtermcap-devel yum install libjpeg* libpng* freetype* gd-* gcc gcc-c++ gdbm-devel libtermcap-devel 5. 아파치 설치 yum install -y httpd 6.mariadb 설치 yum install mariadb mariadb-server 7. php 설치 yum install -y php php-mysql php-mbstring ph..
2017.05.24 -
■ yum 안될때 해결방법 (Cannot find a valid baseurl for repo: base/7/x86_64)
minimal.iso 파일로 진행할때 yum이 실행이 안될때 해결방법 - 첫번째 방법# vi /etc/resolv.conf nameserver 168.126.63.1 - 두번째 방법#dhclient - error messageModules complémentaires chargés : fastestmirror One of the configured repositories failed (Inconnu), and yum doesn't have enough cached data to continue. At this point the only safe thing yum can do is fail. There are a few ways to work "fix" this: 1. Contact the upstream..
2017.05.23