FRONTEND/js (16) 썸네일형 리스트형 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) 하는 방법.. 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 옵션도 있음 jquery label 선택자 https://stackoverflow.com/questions/9803399/jquery-change-text-from-label minify js https://12bme.tistory.com/357 [자바스크립트] 압축(Minify) / 난독화(Uglify) 자바스크립트 관련 구글링을 하다 발견한 git 페이지(https://github.com/nhnent/fe.javascript/)입니다. javascript 개발하실때, 참조하시면 많은 도움이 될것 같습니다. 오늘 포스팅은 위 페이지에서 압축과 12bme.tistory.com j$(this) https://haenny.tistory.com/84 onchange value this.value로 값을 넘겨주면 parameter로 selected값을 받을 수 있다. 콜백함수 https://joshua1988.github.io/web-development/javascript/javascript-asynchronous-operation/ 자바스크립트 비동기 처리와 콜백 함수 (중급) 중급 자바스크립트 개발자가 되기 위한 자바스크립트 비동기 처리와 콜백 함수 이해하기. 콜백 지옥과 해결 방법 등 joshua1988.github.io https://www.hanumoka.net/2018/10/24/javascript-20181024-javascript-callback/ Javascript - 콜백함수(Callback function)이란? 들어가기Callback 함수를 모르지는 않는다. 하지만 잘 안다고 말할수도 없다.요즘 Node, Vue 등을 공부하면서 callback 함수의 .. 이전 1 2 다음