728x90
반응형
https://www.w3schools.com/jquery/eff_hide.asp
jQuery hide() Method
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
$('#slMamt').on('click', function() {
$(".mqty").hide();
$(".mamt").show();
});
$('#slMqty').on('click', function() {
$(".mamt").hide();
$(".mqty").show();
});
➡️ 아이디가 slMamt인 버튼을 누르면 클래스가 mqty인 요소가 사라지고 클래스가 mamt인 요소가 나타난다.
➡️ 아이디가 slMqty인 버튼을 누르면 클래스가 mamt인 요소가 사라지고 클래스가 mqty인 요소가 나타난다.
728x90
반응형
'Front > JS & jQuery' 카테고리의 다른 글
[js] 배열의 합 (0) | 2022.06.19 |
---|---|
[js] 숫자 배열 정렬하기 - sort() (0) | 2022.06.17 |
[js] json배열의 값 가져오기 (0) | 2022.06.15 |
[jQuery] 이벤트 핸들러 (Event Handler) 란? (0) | 2022.06.13 |
[jQuery] .off() - 이벤트 해제하기 (0) | 2022.06.12 |