일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 혼자여행
- input style
- #파이썬
- 파이썬혼자공부하기
- 일본나라여행
- 호버스타일
- 혼공파미션
- 파이썬조건문
- 일본 나라
- 한빛미디어
- 혼공파
- 혼자공부하는파이썬
- 나라 사슴
- 나라여행
- 일본 관광
- 조건문
- 일본여행
- input
- 파이썬혼공
- hover style
- 혼공파선택미션
- 파이썬문자열
- Python
- 비쥬얼스튜디오코드
- 일본 사슴
- 일본
- 파이썬공부
- 비쥬얼스튜디오코드설치
- 파이썬
- 혼공단
- Today
- Total
목록전체 글 (116)
Eveningstar
jquery를 사용할 때 가끔 생각 안나는 메소드라던가...앗 어떻게 썼었더라,,,하는 것들!을 모아놓은 목록(감사합니다...) 출처 : makeawebsitehub.com 원본 https://makeawebsitehub.com/jquery-mega-cheat-sheet/ 이미지 다운 https://cdn.makeawebsitehub.com/wp-content/uploads/2015/09/jquery-mega-cheat-sheet-20152.jpg
[html] **input text를 사용해서 작성 [js] //3자리 단위마다 콤마 생성function addCommas(x) { return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");} $("#onlyNumber").on('keyup', function(event){ addCommas($(this).val().replace(/[^0-9]/g,'')); }); 실행 -> https://jsfiddle.net/jywoo/326f1bm5/14/ https://stackoverflow.com/questions/2901102/how-to-print-a-number-with-commas-as-thousands-separators-in-javascript
- 유튜브 동영상을 iframe에 넣어서 레이아웃을 반응형으로 사용해보기-> 가로는 width 100%로 지정해준다. height는 css로 지정하되 div는 height:0으로 감싼다. * 유튜브url뒤에 "?rel=0" 붙여주기 -> 플레이 영상에대한 관련 동영상 목록을 0으로 하면 재생후 보이지 않기 1로 하면 재생 후 보이기 [html] [css] .video-wrap{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden;} .video-wrap iframe,.video-wrap object,.video-wrap embed{position:absolute;top:0;left:0;width:100%;heig..
input type 확인 - text / 이름 입력시 1) 한글만 입력 var hName = /^[가-힣]+$/; 2) 한글or영문만 var hName = /^[가-힣a-zA-Z]+$/; - text/ 숫자만 입력(전화번호) var pattern = /^[0-9]*$/; [비교] var f_name = $.trim($("#f_name").val()); //이름 var f_num = $.trim($("#f_num").val()); //전화번호 if (f_name == "") { alert("이름을 입력해주세요.\n"); $('#f_name').focus(); }else if (!hName.test(f_name)) { alert("이름을 정확히 입력해주세요."); $('#f_name').focus(); }e..