똑같은 삽질은 2번 하지 말자
Javascript 정규표현식 본문
https://heropy.blog/2018/10/28/regexp/
정말 잘 설명해놓은 사이트
예시
if (this.value.length > this.maxLength)
this.value = this.value.slice(0, this.maxLength); // maxlength가 안먹힐는 경우 추가
value = value.replace(/[^0-9]+/i,''); // 숫자만 입력
HTML에 적용시킬때,
<input type="text"
oninput="if(this.value.length > this.maxLength)
this.value = this.value.slice(0, this.maxLength);
value = value.replace(/[^0-9]+/i,'');">
'Javascript' 카테고리의 다른 글
Array.prototype.map() 과 Object.assign을 이용한 데이터 편집 (0) | 2020.10.03 |
---|---|
Tab키 이벤트 Focus이동(tabindex 속성) (0) | 2020.08.25 |
Javascript Boolean 값 판단기준 (0) | 2020.05.22 |
내보내기(export , exports, export default) 가져오기(import, require) (0) | 2020.04.17 |
Axios Access-Control-Allow-Origin issue (0) | 2020.04.15 |
Comments