- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[jQuery] children(), each() 본문
children( ) => 지정한 엘리먼트의 바로 아래 자식 노드 (parent( )는 부모 노드)
each( ) => 각각 엘리먼트에 차례로 접근
each( ) => 각각 엘리먼트에 차례로 접근
<html> <head> <title>jquery each()</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() { //root의 자식 노드 선택 var nodes=$("#root").children(); //nodes의 갯수를 alert alert(nodes.length); //변수 txt 선언 var txt=""; //nodes 의 각각 엘리먼트에 차례로 접근해서 txt에 입력 nodes.each(function(){ txt+=" "+$(this).text(); }); alert(txt); }); </script> </head> <body> <div id="root"> <div>Azit4u</div> <div>S2ang</div> <div>Hello</div> </div> </body> </html>
출처: http://mandooya.com/entry/jQuery-childreneach [만두야닷컴]
'★─Programing > ☆─WebProgram' 카테고리의 다른 글
[CSS] table 테이블 크기에 맞게 영문 줄바꿈 (0) | 2018.03.16 |
---|---|
[JavaScript] TEXTAREA 줄바꿈 저장 (0) | 2017.06.08 |
[JavaScript] JSON Object의 key 개수(length) 구하기 (0) | 2017.06.07 |
[Spring] Spring Security - No visible WebSecurityExpressionHandler instance could be found in the application context (0) | 2017.06.07 |
[Security] 스프링 시큐리티 csrf (크로스도메인) 설정방법 (0) | 2017.04.25 |
Comments