분류 전체보기216 [React] input value check 인풋 값 체크 handleCreate = () => { const { input, todos } = this.state; if (this.state.input != '') { this.setState({ input: '', //input 내용 비우기 todos: todos.concat({ id: this.id++, text: input, checked: false, }), }); } }; 2020. 6. 4. git touch 파일 여러개 한번에 추가 touch f1 f2 f3 f4 f5 2020. 6. 4. github repositories 저장소에 있는 파일 강제 삭제 git filter-branch --force --index-filter git rm -r --cached --ignore-unmatch 삭제할파일명(.gitignore에 들어갈 문장) --prune-empty --tag-name-filter cat -- --all //위 파일명이 들어간 모든 파일 제거인 듯.. echo public/photos >> .gitignore git add .gitignore && git commit -m "ignore rule for 파일명" git push -f origin master //fetch git rm -r --cached 안 먹힐 때 2020. 6. 4. git bash 홈 디렉토리 설정 작업하려는 폴더에서 git bash here을 눌러도 계속 고정된 디렉토리에서 실행되는 문제.. 이거땜에 1시간동안 개고생했다.. git bash에서 vi ~/.bashrc 치니까 고정된 디렉토리 등장.. 지워버린 후 :wq! 끝.. 반대로 홈 디렉토리 설정할 때는 .bashrc에서 cd /원하는경로/ 입력 2020. 6. 3. 왕초보의 git/github 개척기 #사용자 등록 git config --global user.name 사용자 이름 git config --global user.email 사용자 이메일 #저장소 연결 git remote add origin 깃허브 주소 git remote -v #저장소 연결 삭제 git remote remove 깃허브 주소 #저장소에 업로드 git init git add . git commit -m '커밋 내용' git push origin master // git push -u origin master // -u를 쓰면 앞으로 자동으로 위 브런치로 push 하겠다는 뜻 #폴더/파일 제외하고 커밋 touch .gitignore ls -a vi .gitignore i > 제외할 폴더/파일명 입력 (ex. download/, .. 2020. 6. 3. [bxslider.js] li가 1개일 때 selector 제거 nextSelector: (index_fac_li.length > 1) ? '#next1' : false, prevSelector: (index_fac_li.length > 1) ? '#prev1' : false, 2020. 6. 3. append로 추가한 요소에 function 넣기 $("#mheader .gnbBtn").click(function(){ $('#mainWrap').append(''); }); $(document).on('click', 'div.overlayNew', function(){ $("html, body").css({"height" : "auto", "overflow" : "auto"}); $("#mgnbMenu").animate({left:'100%'}); $('div.overlayNew').fadeOut(300); setTimeout(function() { $('div.overlayNew').remove(); }, 400); }); 2020. 5. 25. [dataTables.js] colspan 오류 해결 Ashton Cox N/A 2009/01/12 $86,000 colspan="n" n-1개만큼 추가 2020. 5. 20. html 수정(edit), 저장(save) 버튼 만들기 $(document).on('click', 'a.edit-row', function (e) { e.preventDefault(); var _self = $(this); var row = $(this).closest('tr'); row.find('.on-editing').removeAttr('hidden'); row.find('.on-default').attr('hidden', true); row.children('td').each(function (i) { var _this = $(this); var content = $(this).text(); if (!_this.hasClass('actions')) { _this.html(''); } }); }).on('click', 'a.save-row', func.. 2020. 5. 18. 이전 1 ··· 11 12 13 14 15 16 17 ··· 24 다음