-
jQuery 를 이용한 + - 버튼 만들기.Front-End/jQuery 2014. 10. 2. 14:42
jQuery 를 이용한 - + 버튼 만들기.
html$(document).ready(function(){ // This button will increment the value $('.qtyplus').click(function(e){ // Stop acting like a button e.preventDefault(); // Get the field name fieldName = $(this).attr('field'); // Get its current value var currentVal = parseInt($('input[name='+fieldName+']').val()); // If is not undefined if (!isNaN(currentVal)) { // Increment $('input[name='+fieldName+']').val(currentVal + 1); } else { // Otherwise put a 0 there $('input[name='+fieldName+']').val(0); } }); // This button will decrement the value till 0 $(".qtyminus").click(function(e) { // Stop acting like a button e.preventDefault(); // Get the field name fieldName = $(this).attr('field'); // Get its current value var currentVal = parseInt($('input[name='+fieldName+']').val()); // If it isn't undefined or its greater than 0 if (!isNaN(currentVal) && currentVal > 0) { // Decrement one $('input[name='+fieldName+']').val(currentVal - 1); } else { // Otherwise put a 0 there $('input[name='+fieldName+']').val(0); } }); });
결과 화면'Front-End > jQuery' 카테고리의 다른 글
패스워드 엔터 입력시 로그인 시키기. (0) 2015.02.10 jQuery Array merge 중복 데이터 제거 (0) 2015.01.09 Remove Array Value By index in jquery (0) 2014.11.03 Tabhold 를 이용한 롤클릭 이벤트 처리. (0) 2014.10.02 jquery.cj-swipe.js 소개 (0) 2014.10.02 HTML5 Local Storage (0) 2014.03.03 [jQuery] radio 값 가져오기, 설정하기 (2) 2013.11.27 비밀번호(패스워드) 유효성 체크 (문자, 숫자, 특수문자의 조합으로 6~16자리) [출처] [javascript] 비밀번호(패스워드) 유효성 체크 (문자, 숫자, 특수문자의 조합으로 6~16자리)|작성자 가을사랑 (0) 2013.11.19 javascript 정규식을 이용해서 영문, 숫자 혼용만 사용하는 비밀번호 확인 (0) 2013.11.19 jquery 주민등록번호 외국인 / 내국인 유효성 검사 (0) 2013.11.19 댓글