일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- https://velog.io/@velopert/create-typescript-react-component
- 출처 : https://joshua1988.github.io/web-development/javascript/promise-for-beginners/
- toString
- object
- 출처 : https://webdir.tistory.com/506
- 게시판
- http://jeonghwan-kim.github.io/dev/2019/06/25/react-ts.html
Archives
- Today
- Total
Back Ground
jQuery - .is() 요소중 하나가 일치하는 경우 본문
is () 메소드를 확인 선택된 요소 중 하나가 일치하는 경우
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").click(function(){ if ($("p").parent().is("div")) { alert("Parent of p is div"); } }); }); </script> </head> <body> <div> <p>Click me to find out if I my parent is a div element.</p> </div> |
'Javascript > JQuery' 카테고리의 다른 글
jQGrind - 생성 (0) | 2016.09.01 |
---|---|
jQGrid get selected row 선택된 줄의 정보 가져오기 (0) | 2016.09.01 |
jQuery - checked 처리 (2) | 2016.08.31 |
jQuery ui theme 테마 (0) | 2016.08.31 |
jQGrid - (checkbox) 생성 및 제어 (5) | 2016.08.31 |
Comments