Notice
Recent Posts
Recent Comments
Link
투케이2K
98. (jquery/제이쿼리) map 사용해 ul li 리스트 콜백 함수 실행 및 id 값 확인 실시 본문
[개발 환경 설정]
개발 툴 : Edit++
개발 언어 : jquery
[소스 코드]
<!-- [CDN 라이브러리 설치] -->
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<!-- [내부 자바스크립트 J쿼리 이벤트 지정] -->
<script>
/**
* --------------------------------
* [요약 설명]
* --------------------------------
* 1. load : html 최초 로드 수행 시 호출 되는 함수입니다
* --------------------------------
*/
// [html 최초 로드 및 이벤트 상시 대기 실시]
$(window).load(function(){
console.log("");
console.log("=========================================");
console.log("[window load] : [html 로드 수행 실시]");
console.log("=========================================");
console.log("");
// [테스트 함수 호출]
testMain();
});
// [테스트 자바스크립트 함수]
function testMain(){
console.log("");
console.log("=========================================");
console.log("[testMain] : [start]");
console.log("=========================================");
console.log("");
// [1] : [선택한 <li>요소마다 콜백함수를 실행하여 각 <li>요소 id 값을 반환]
var array = $("#list_1 li").map(function() {
return this.id;
})
.get() // 반환된 모든 값을 하나의 배열로 반환함.
.join(); // 배열의 모든 요소를 쉼표(,)로 구분하는 하나의 문자열로 반환함.
// [2] : [로그 출력 실시]
console.log("");
console.log("=========================================");
console.log("[testMain] : [로그 출력]");
console.log("[array] : " + array);
console.log("=========================================");
console.log("");
};
</script>
<body>
<!-- [리스트 선언 실시] -->
<ul id="list_1">
<li id="one">1</li>
<li id="two">2</li>
<li id="three">3</li>
<li id="four">4</li>
<li id="five">5</li>
</ul>
</body>
[결과 출력]
반응형
'Jquery' 카테고리의 다른 글
Comments