목록알아두기/JavaScript (2)
무소의 뿔처럼

https://cdnjs.com/libraries https://cdnjs.com/libraries/jquery IE 8 이하의 브라우저까지 호환성을 고려 : v.1.12.x 이하 버전 https://cdnjs.com/libraries/jquery/1.12.4 URL 복사하여 주소창에 입력 web이 뜨면 ctrl+s로 저장. 제이쿼리 최신 버전에서 삭제된 이전 버전의 메서드 사용하기 jQuery Migrate Plugin We have created the jQuery Migrate plugin to simplify the transition from older versions of jQuery. The plugin restores deprecated features and behaviors so tha..
모든값 const searchParams = new URLSearchParams(location.search); for (const param of searchParams) { console.log(param); } 특정값 const urlParams = new URL(location.href).searchParams; const name = urlParams.get('name'); 더보기 function clickDelBtn(){ const urlParmas = new URL(location.href).searchParams; const list = urlParmas.get("list"); const ans = confirm('정말 삭제하시겠습니까?'); if(!ans){ location.href="/..