ㅁ2 출력시키고 ㅁ 출력시키기
function a(){
console.log("ㅁ")
}
function b(){
console.log("ㅁ2")
return a();
}
혹은 밑에도 가능
function a(){
console.log("ㅁ")
}
function b(callback){
console.log("ㅁ2")
callback()
}
b(a)
** 추가로 다른 함수가 더 필요할때
function a(callback){
// 실행될 함수 어쩌고
callback()
}
$(function(){
setTimeout(() => {
a(function(){
$("div").each(function(){
$(this).text($(this).index())
})
})
}, 1000);
})
로드 완료되고 1초후에 a가 완료된 후 각 div에 text가 써짐
callback이 중요함
'js' 카테고리의 다른 글
[js]FullCalendar.js (0) | 2024.08.14 |
---|---|
[script]getElementById가 null이 뜰 때 (0) | 2024.06.11 |
[js]타임피커 라이브러리 time picker (0) | 2023.12.19 |
[js]input:file 이미지만 업로드 되게 하기 (0) | 2023.10.27 |
[js]날짜 차이 / 일수 차이 구하기 (날짜 계산) (0) | 2023.10.25 |