본문 바로가기

분류 전체보기216

같은 문자가 3번 이상 반복되는지 체크 /([0-9a-zA-Z])\1{2,}/.test('aaa') [0-9a-zA-Z] : 0~9, a~z, A~Z 범위에서 1{2,} : 1개의 문자가(?) 3번 이상 반복 결과값 = true 2020. 7. 28.
htmlReactParser (html parsing) {htmlReactParser(errorMessage)} 2020. 7. 27.
비밀번호 변경 폼 resetpassword form handleEvent const handleEvent = (e: React.ChangeEvent | React.FocusEvent): void => { const { value } = e.currentTarget; const { name: targetName } = e.target; if (targetName === 'password') { setPassword(value); } else if (targetName === 'passwordNew') { setPasswordNew(value); } else if (targetName === 'passwordNewRe') { setPasswordNewRe(value); } }; {t('영문 대/소문자, 숫자, 특수문자 포함 8~24자')} {t('연속적인 숫자 사용불가(예:111.. 2020. 7. 27.
비밀번호 변경 버튼 resetpassword button event const handleButtonClick = (e: React.MouseEvent) => { e.preventDefault(); if (passwordNew !== passwordNewRe) { setErrorMessage( lineBreakToBr( t("입력한 비밀번호가 일치하지 않습니다.\\n'새 비밀번호'와 '새 비밀번호 확인'을 다시 입력해 주세요.") ) ); } }; e.preventDefault(); 2020. 7. 27.
큰따옴표 안에 작은따옴표 넣어야 할 때 t(" ' ' ") /* eslint-disable quotes */ 2020. 7. 27.
bash 기본 명령어 배우기 link https://chibychi.blogspot.com/2019/03/1git-bash-vscode-python-python-python.html #1 멋쟁이사자처럼 팀스터디 자료(git bash 명령어, vscode사용, python설치, python 숫자,python 문자) Django,python,java,algorithm,Network,webprogramming Study chibychi.blogspot.com https://nolboo.kim/blog/2015/12/01/bash-command/ 2020. 7. 24.
[야매] slidePanel + DataTables + Tab $('a[aria-controls="langTab2"]').one('shown.bs.tab', function(e){ var slidePanel_table = $('#slidePanel_table_paging').DataTable({ language: { paginate: { previous: '', next: '' }, "lengthMenu": ''+ '10쪽'+ '20쪽'+ '30쪽'+ '40쪽'+ '' }, "dom": 'rt', "scrollX": true, "order": [ 0, 'desc' ] }); }); 2020. 7. 7.
[modal.js 실행 후 함수 실행] modal + image crop $("#image-crop-modal").one("shown.bs.modal", function() { //alert("d"); $("#img-crop img").cropper({ aspectRatio: 16 / 9, preview: "#exampleFullCropperPreview > .img-preview", responsive: true, crop: function crop() { var data = (0, _jquery.default)(this).data('cropper').getCropBoxData(); $inputDataX.val(Math.round(data.left)); $inputDataY.val(Math.round(data.top)); $inputDataHeight.val(Math.rou.. 2020. 7. 7.
북마크 이벤트 응모 버튼 클릭 javascript:$('a[name="getCouponBtn1"]').click(); 2020. 7. 7.