일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- spring reactive
- 웹 커리큘럼
- 공유기 서버
- 웹앱
- Spring Framework
- reactor core
- reactive
- 웹 스터디
- ipTIME
- Spring Batch
- 서버운영
- reactor
- Today
- Total
목록jQuery/Tips (2)
Hello World
Introducing JavaScript Tips New year, new project. A JS tip per day!With great excitement, I introduce these short and useful daily JavaScript tips that will allow you to improve your code writing. With less than 2 minutes each day, you will be able to read about performance, conventions, hacks, interview questions and all the items that the future of this awesome language holds for us.At midday..
jQuery를 사용해 보면 알겠지만, jQuery의 핵심은 확장집합(wrapped set, jQuery Object)이다.다음처럼 사용하면 var aaa = $('.foo');aaa는 확장집합을 가리키게 된다.즉 jQuery에 selector를 넘겨주면 그 selector에 해당하는 객체를 찾아서 모아놓은 확장집합이라는 객체가 리턴된다. 그런데 사용해 보면 알겠지만, 이 확장집합은 Array처럼 작동한다.즉 aaa[2] 이나, aaa.length, aaa.push(...) 등등을 사용할 수 있다는 말이다. 또한 당연한 이야기지만 aaa.html(...), aaa.each(...) 등등의 확장메소드도 사용할 수 있다.그러나 이 확장집합에 instanceof Array를 해보면 false가 리턴된다. 즉 A..