예전에 북마크 해둔게 있었다. this와 $(this)의 차이 this는 DOM object 이다. $(this)는 javascript의 this를 jQuery wrapper로 한번 감싼거라고 생각하면 된다. $(this)는 jQuery wrapper로 감싼 object이기 때문에 jquery method를 사용할 수 있다. 그러나 javascript의 native method들은 사용할 수 없다. https://stackoverflow.com/questions/3633270/difference-between-this-and-this-in-jquery Difference between $(this) and this in jquery What is the fundamental difference betwe..
노션 정리하면서 옛날에 써놨던거 옮기기... 정리좀해야지... 자바스크립트 &&, || 연산자 자바스크립트의 연산자 중에 &&와 || 연산자가 있다. 어느 프로그래밍 언어에서나 이런 논리연산자가 있지만 자바스크립트는 조금 다르다. 자바스크립트의 &&와 || 연산자는 다른 언어와는 조금 다르다. 나는 자바를 처음부터 배워서 &&(AND) 나 ||(OR) 연산자를 이용해서 개발을 할 때는 먼저 값을 비교할 피연산자들을 설정하고 피연산자들의 값이 boolean 형태의 값이거나 boolean 형태의 값이 나오는 수식이 있어야되고 연산자 자체도 boolean 값을 리턴하게된다. int money = 2000; boolean hasCard = true; if (money>=3000 || hasCard) { Syst..
이벤트 핸들러 내부 this binding 시 currentTarget 속성과 target 속성의 차이 document.body.innerHTML = '클릭'; document.getElementById('clickDiv').addEventListener('click', function(event){ console.log(event.currentTarget); console.log(event.target); }); 이벤트 핸들러가 바인딩된 엘리먼트는 event.currentTarget 이벤트가 실제로 발생한 엘리먼트는 event.target 참고 https://stackoverflow.com/questions/10086427/what-is-the-exact-difference-between-current..
JSON에서 원하는 값을 parsing 한 후에 중복 값 제거하기 const myArray = [ { "id" : "1", "name" : "sskim", "country" : "korea" }, { "id" : "2", "name" : "lsy", "country" : "usa" }, { "id" : "3", "name" : "lsw", "country" : "canada" }, { "id" : "1", "name" : "sskim", "country" : "korea" }, { "id" : "5", "name" : "nyw", "country" : "australia" }, { "id" : "5", "name" : "kjh", "country" : "italia" } ]; const unique = ..
- Total
- Today
- Yesterday
- springboot
- Github Status
- Mac
- LocalDateTime
- input
- intellij
- Spring Security
- 오라클
- 북리뷰
- Kotlin
- jQuery
- oracle
- LocalDate
- localtime
- config-location
- k8s
- Java
- Bash tab
- JavaScript
- 베리 심플
- elasticsearch
- window
- maven
- mybatis
- rocky
- Spring
- docker
- mybatis config
- Linux
- svn
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |