jQuery 버튼 텍스트 변경, 클릭시 글씨 변경 > 팁앤테크

본문 바로가기

사이트 내 전체검색

뒤로가기 팁앤테크

jQuery 버튼 텍스트 변경, 클릭시 글씨 변경

본문

<script>
$(function() {
 $('#button1').click( function() {
   if( $(this).html() == '받기' ) {
     $(this).html('확인');
   }
   else {
     $(this).html('받기');
   }
 });
});
</script> 
<button id="button1">받기</button>

 


<script>
$(function() {
 $('#button1').click( function() {
   if( $(this).val() == '접기' ) {
     $(this).val('펼치기');
   }
   else {
     $(this).val('접기');
   }
 });
});
</script> 
<input type="button" value="접기" id="button1">

 

 

<script>
$(function() {
 $('.sub_open').click( function() {
   $('.sub_img').toggle();
   if( $(this).html() == '열기' ) {
     $(this).html('닫기');
   }
   else {
     $(this).html('열기');
   }
 });
});
</script>

<div class="sub_open">열기</div>
 

추천0

댓글목록 0

등록된 댓글이 없습니다.

전체 825건 1 페이지
게시물 검색
Copyright (c) 株式会社YHPLUS. All rights reserved.

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒171-0014 東京都豊島区池袋2-41-5 アーバン154 8F
050-5539-7787
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

PC 버전으로 보기