본문 바로가기

FRONTEND

(52)
[개발자도구] 갑자기 Vue 탭이 안보일 때 개발자도구에서 갑자기 Vue 탭이 안보일 때 Mac : option + r Windows : alt + r
Ext.panel.Panel 랑 Ext.form.Panel 차이 보호되어 있는 글입니다.
폰트사이즈는 주로 짝수px로
[jQuery] select 에는 readonly(X) / disabled(O) select 에는 readonly 없음 disabled만 있기 때문에 $(선택자).prop('disabled', true);
jsp 이전페이지 "uri" 가져오기 https://blog.naver.com/PostView.naver?blogId=dalbong97&logNo=130005520423&from=search&redirect=Log&widgetTypeCall=true&directAccess=false [JSP] 이전 페이지 URL 조회 HTTP 헤더에는 이전 페이지의 URL이 Referer 라는 이름으로 전송된다. 만약 인터넷 브라우저에서 ... blog.naver.com https://thiago6.tistory.com/33 로그인 후 이전페이지로 되돌아가기 - Referer 헤더 일반적인 웹 사이트를 보면 "강제 로그인" 로직이 걸려있는 버튼이 있고, "단순 로그인"버튼이 있는데요. "강제 로그인"의 경우, 인터셉터에 매핑된 uri를 가져와, query의..
A 태그(Ahchor) href, onclick 차이 보호되어 있는 글입니다.
encodeURIComponent() function userDetail(userId){ location.href = "/detail?userId=" + userId; return false; } 이렇게 파라미터를 controller로 넘길 경우, #와 같은 문자가 사라진채로 넘어가는 경우가 있다. 예) 'userId!@#' -> 'userId!@' function userDetail(userId){ location.href = "/detail?userId=" + encodeURIComponent(userId); return false; } 이렇게 넘기면 손실 없이 넘길 수 있다. p.s. 그러나, 위의 예제와 같은 인코딩이 필요한 요소의 경우(아이디, 시퀀스 등) 해당 방법보다는 인코딩하여 넘기고 구현체에서 디코딩(base64) 하는 방법..
[CSS] a태그 href 아이디 선택자 https://www.epubguide.net/237 모르는 사람이 의외로 많은 CSS 문법 (1) 최근에 전자책 제작 강의를 많이 하고 있습니다. 완전 초보부터 윙크나 시길로 전자책을 만들다 한계에 부딪힌 분들까지 대상이 다양한데요, 전자책을 많이 만들어 봤다는 분들조차 아주 기본 www.epubguide.net
jquery-confirm https://craftpip.github.io/jquery-confirm/#getting-started jquery-confirm.js | The multipurpose alert & confirm A multipurpose alert & confirm plugin, alternative to the native alert() and confirm() functions. Supports features like auto-close, themes, animations, and more. craftpip.github.io jquery-confirm boxwith https://stackoverflow.com/questions/43965830/failed-to-set-width-in-jquery-confir..
스크롤탑 $("html, body").animate({ scrollTop: 0 }, "slow"); 에니메이션으로 스르륵 올라가기 slow 외에 fast 옵션도 있음