본문 바로가기

js/jQuery

[jquery] 해당 클래스를 제외한 요소 선택



inputGroup 클래스를 가진 input 요소들 중에 rate 클래스를 가지지 않는 요소들에게 mask plugin 을 설정하고 싶다고 가정할때

html
1
2
<input type="text" class="inputGroup rate" id="depositRate" name="depositRate" />
<input type="text" class="inputGroup" id="priceRate" name="priceRate" />
cs
javascript
1
 $("input.inputGroup").not(".rate").mask('000,000,000,000,000', { reverse: true });
cs