inputGroup 클래스를 가진 input 요소들 중에 rate 클래스를 가지지 않는 요소들에게 mask plugin 을 설정하고 싶다고 가정할때
1 2 | <input type="text" class="inputGroup rate" id="depositRate" name="depositRate" /> <input type="text" class="inputGroup" id="priceRate" name="priceRate" /> | cs |
1 | $("input.inputGroup").not(".rate").mask('000,000,000,000,000', { reverse: true }); | cs |
'js > jQuery' 카테고리의 다른 글
[jquery mobile] swipe event (0) | 2017.07.03 |
---|---|
[jQuery] to find checkbox and change attribute (0) | 2017.06.26 |
[jquery][plugin] input mask (0) | 2017.06.01 |
[javascript] substring 문자열 자르기 (0) | 2017.05.31 |
[jquery][iCheck] iCheck 사용법 ( radio button 이 여러개일때) (0) | 2017.05.23 |