index.html
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>Input Counter</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link href="stylesheet.css" media="screen" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" type="text/javascript"></script>
<script src="application.js" type="text/javascript"></script>
</head>
<body>
<div id="container">
<form action="index.html" method="POST">
<textarea></textarea>
<span class="input-counter"></span>
<input type="submit" id="input-submit" value="등록" />
</form>
</div>
</body>
</html>
stylesheet.js
body {
font-size: 12px;
background: #FFF;
color: #333;
margin: 0;
}
#container {
margin: 10px auto;
width: 500px;
padding: 10px;
background: #CCC;
}
form {
overflow: hidden;
height: 100%;
}
textarea {
display: block;
width: 99%;
height: 5.0em;
margin-bottom: 0.5em;
}
span.input-counter {
float: left;
font-weight: bold;
color: #000;
}
span.input-counter.disabled {
color: #F00;
}
input#input-submit {
float: right;
}
application.js
$(function() {
var maxLength = 140;
function updateInputCount() {
var textLength = $('textarea').val().length;
var count = maxLength - textLength;
$('span.input-counter').text(count);
if (count < 0) {
$('span.input-counter').addClass('disabled');
$('input#input-submit').prop('disabled', true);
} else {
$('span.input-counter').removeClass('disabled');
$('input#input-submit').prop('disabled', false);
}
}
$('textarea')
.focus(updateInputCount)
.blur(updateInputCount)
.keypress(updateInputCount);
window.setInterval(updateInputCount, 100);
updateInputCount();
});
댓글 1개
게시판 목록
팁게시판
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5727 |
잘살아보자
|
10년 전 | 494 | |
| 5726 | 10년 전 | 1080 | ||
| 5725 | 10년 전 | 1257 | ||
| 5724 | 10년 전 | 964 | ||
| 5723 |
잘살아보자
|
10년 전 | 457 | |
| 5722 |
잘살아보자
|
10년 전 | 432 | |
| 5721 |
잘살아보자
|
10년 전 | 414 | |
| 5720 |
잘살아보자
|
10년 전 | 410 | |
| 5719 |
잘살아보자
|
10년 전 | 488 | |
| 5718 |
잘살아보자
|
10년 전 | 606 | |
| 5717 |
잘살아보자
|
10년 전 | 865 | |
| 5716 |
잘살아보자
|
10년 전 | 396 | |
| 5715 |
starbros
|
10년 전 | 812 | |
| 5714 |
잘살아보자
|
10년 전 | 589 | |
| 5713 |
잘살아보자
|
10년 전 | 476 | |
| 5712 |
잘살아보자
|
10년 전 | 443 | |
| 5711 |
잘살아보자
|
10년 전 | 493 | |
| 5710 |
잘살아보자
|
10년 전 | 454 | |
| 5709 |
잘살아보자
|
10년 전 | 477 | |
| 5708 |
잘살아보자
|
10년 전 | 820 | |
| 5707 |
잘살아보자
|
10년 전 | 395 | |
| 5706 |
잘살아보자
|
10년 전 | 513 | |
| 5705 |
잘살아보자
|
10년 전 | 629 | |
| 5704 |
잘살아보자
|
10년 전 | 541 | |
| 5703 |
잘살아보자
|
10년 전 | 532 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기