반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ajax
- Java
- Eclipse
- security
- Push
- FCM
- spring3
- SpringBoot
- jenkins
- pwa
- mybatis
- mysql
- Next.js
- rocky9
- Maven
- jquery
- NextJS
- nodejs
- popup
- PM2
- node.js
- MSsql
- yona
- javascript
- submit
- centos7
- MariaDB
- git
- config
- docker
Archives
- Today
- Total
ふたりで
javascript, jquery 실시간 글자수 체크 본문
728x90
반응형
SMALL
keyup 이벤트가 발생 할때 마다 글자수를 체크하여 표시한다.
$("#ord_receiver_memo").keyup(function(e) {
//console.log("키업!");
var content = $(this).val();
$("#textLengthCheck").text("(" + content.length + " / 최대 45자)"); //실시간 글자수 카운팅
if (content.length > 45) {
alert("최대 45자까지 입력 가능합니다.");
$(this).val(content.substring(0, 45));
$('#textLengthCheck').text("(45 / 최대 45자)");
}
});
728x90
반응형
SMALL
html소스
<th class="text_bold">배송메모</th>
<td colspan="">
<input type="text" class="tf_comm" id="ord_receiver_memo" name="ord_receiver_memo" style="width: 50rem;" maxlength="46">
<span id="textLengthCheck">(0 / 최대 45자)</span>
</td>
결과 화면
728x90
반응형
LIST
'javascript' 카테고리의 다른 글
layer popup Drag & Drop jquery draggable (0) | 2022.05.17 |
---|---|
javascript 브라우저 구분 처리 navigator.userAgent.toLowerCase() (0) | 2022.04.20 |
document.ready 이후 동적으로 생성된 Element에 event 걸기 (0) | 2021.12.10 |
excelexportjs 사용시 숫자를 문자로 인식 시키기 (0) | 2021.12.09 |
vue.js To pwa (vue.js 프로젝트를 PWA 로...) (0) | 2021.08.24 |
Comments