글자수 세기- 글자수 계산기
글자수 :
- 구현 코드
$("#textinput").keyup(function() {
var getval = $("#textinput").val();
var result2 = getval.length;
$("#textoutput").text(result2);
});
728x90
글자수 :
$("#textinput").keyup(function() {
var getval = $("#textinput").val();
var result2 = getval.length;
$("#textoutput").text(result2);
});
댓글