jQuery w3schools 한글판 강좌47 -A Callback Function for text(), html(), and val()
jQuery w3schools 한글판 강좌47 - text(), html(), val() 에 대한 콜백함수
이전에 소개된 3개 메소드들(text(), html(), val()) 모두 역시 콜백 함수를 가집니다.
콜백함수는 아래의 두개의 매개변수를 가집니다:
1. 선택된 요소 리스트에서 현재 요소의 인덱스
2. 원래(구)값
따라서 여러분은 그 함수로부터의 새 값으로 사용하고 싶은 문자열을 리턴하십시오.
다음 예는 콜백함수를 가지는 text(), html() 메소드를 보여줍니다:
Example
$("#btn1").click(function(){
$("#test1").text(function(i, origText){
return "Old text: " + origText + " New text: Hello world!
(index: " + i + ")";
});
});
$("#btn2").click(function(){
$("#test2").html(function(i, origText){
return "Old html: " + origText + " New html: Hello <b>world!</b>
(index: " + i + ")";
});
});
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4556 | jQuery |
프로그래머7
|
8년 전 | 1690 | |
| 4555 | jQuery |
프로그래머7
|
8년 전 | 1607 | |
| 4554 | jQuery |
프로그래머7
|
8년 전 | 1661 | |
| 4553 | jQuery |
프로그래머7
|
8년 전 | 2040 | |
| 4552 | PHP | 8년 전 | 1879 | ||
| 4551 | PHP | 8년 전 | 1464 | ||
| 4550 | PHP | 8년 전 | 1706 | ||
| 4549 | jQuery |
프로그래머7
|
8년 전 | 2743 | |
| 4548 | jQuery |
프로그래머7
|
8년 전 | 1440 | |
| 4547 | jQuery |
프로그래머7
|
8년 전 | 1366 | |
| 4546 | jQuery |
프로그래머7
|
8년 전 | 1683 | |
| 4545 | jQuery |
프로그래머7
|
8년 전 | 1709 | |
| 4544 | jQuery |
프로그래머7
|
8년 전 | 1863 | |
| 4543 | jQuery |
프로그래머7
|
8년 전 | 1651 | |
| 4542 | jQuery |
프로그래머7
|
8년 전 | 1583 | |
| 4541 | jQuery |
프로그래머7
|
8년 전 | 1632 | |
| 4540 | jQuery |
프로그래머7
|
8년 전 | 1665 | |
| 4539 | jQuery |
프로그래머7
|
8년 전 | 1862 | |
| 4538 | jQuery |
프로그래머7
|
8년 전 | 1535 | |
| 4537 | jQuery |
프로그래머7
|
8년 전 | 1695 | |
| 4536 | jQuery |
프로그래머7
|
8년 전 | 1933 | |
| 4535 | jQuery |
프로그래머7
|
8년 전 | 1519 | |
| 4534 | jQuery |
프로그래머7
|
8년 전 | 1854 | |
| 4533 | jQuery |
프로그래머7
|
8년 전 | 2343 | |
| 4532 | jQuery |
프로그래머7
|
8년 전 | 1914 | |
| 4531 | PHP |
|
8년 전 | 3706 | |
| 4530 | jQuery |
프로그래머7
|
8년 전 | 1799 | |
| 4529 | jQuery |
프로그래머7
|
8년 전 | 1898 | |
| 4528 | jQuery |
프로그래머7
|
8년 전 | 1695 | |
| 4527 | jQuery |
|
8년 전 | 2696 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기