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개
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 170 | ||
| 8229 | 9년 전 | 146 | ||
| 8228 |
커네드커네드
|
9년 전 | 191 | |
| 8227 | 9년 전 | 232 | ||
| 8226 | 9년 전 | 247 | ||
| 8225 | 9년 전 | 228 | ||
| 8224 | 9년 전 | 235 | ||
| 8223 | 9년 전 | 214 | ||
| 8222 |
|
9년 전 | 277 | |
| 8221 | 9년 전 | 174 | ||
| 8220 | 9년 전 | 211 | ||
| 8219 | 9년 전 | 188 | ||
| 8218 | 9년 전 | 234 | ||
| 8217 |
star3840
|
9년 전 | 201 | |
| 8216 | 9년 전 | 266 | ||
| 8215 | 9년 전 | 212 | ||
| 8214 | 9년 전 | 326 | ||
| 8213 | 9년 전 | 281 | ||
| 8212 | 9년 전 | 186 | ||
| 8211 | 9년 전 | 362 | ||
| 8210 | 9년 전 | 361 | ||
| 8209 | 9년 전 | 437 | ||
| 8208 | 9년 전 | 326 | ||
| 8207 | 9년 전 | 332 | ||
| 8206 |
|
9년 전 | 281 | |
| 8205 | 9년 전 | 254 | ||
| 8204 | 9년 전 | 243 | ||
| 8203 | 9년 전 | 321 | ||
| 8202 | 9년 전 | 236 | ||
| 8201 | 9년 전 | 266 | ||
| 8200 | 9년 전 | 280 | ||
| 8199 | 9년 전 | 304 | ||
| 8198 | 9년 전 | 266 | ||
| 8197 | 9년 전 | 252 | ||
| 8196 | 9년 전 | 673 | ||
| 8195 | 9년 전 | 265 | ||
| 8194 | 9년 전 | 373 | ||
| 8193 | 9년 전 | 279 | ||
| 8192 | 9년 전 | 296 | ||
| 8191 | 9년 전 | 252 | ||
| 8190 | 9년 전 | 233 | ||
| 8189 | 9년 전 | 296 | ||
| 8188 | 9년 전 | 229 | ||
| 8187 | 9년 전 | 239 | ||
| 8186 | 9년 전 | 237 | ||
| 8185 | 9년 전 | 411 | ||
| 8184 | 9년 전 | 195 | ||
| 8183 | 9년 전 | 401 | ||
| 8182 | 9년 전 | 273 | ||
| 8181 | 9년 전 | 229 | ||
| 8180 | 9년 전 | 799 | ||
| 8179 | 9년 전 | 572 | ||
| 8178 | 9년 전 | 439 | ||
| 8177 |
kiplayer
|
9년 전 | 434 | |
| 8176 | 9년 전 | 462 | ||
| 8175 | 9년 전 | 353 | ||
| 8174 | 9년 전 | 346 | ||
| 8173 | 9년 전 | 434 | ||
| 8172 | 9년 전 | 311 | ||
| 8171 | 9년 전 | 275 | ||
| 8170 | 9년 전 | 393 | ||
| 8169 |
커네드커네드
|
9년 전 | 349 | |
| 8168 | 9년 전 | 428 | ||
| 8167 | 9년 전 | 417 | ||
| 8166 | 9년 전 | 316 | ||
| 8165 | 9년 전 | 262 | ||
| 8164 | 9년 전 | 396 | ||
| 8163 | 9년 전 | 403 | ||
| 8162 | 9년 전 | 387 | ||
| 8161 | 9년 전 | 401 | ||
| 8160 |
|
9년 전 | 620 | |
| 8159 | 9년 전 | 564 | ||
| 8158 | 9년 전 | 361 | ||
| 8157 | 9년 전 | 472 | ||
| 8156 | 9년 전 | 349 | ||
| 8155 | 9년 전 | 354 | ||
| 8154 |
00년생용띠
|
9년 전 | 690 | |
| 8153 | 9년 전 | 322 | ||
| 8152 |
|
9년 전 | 506 | |
| 8151 | 9년 전 | 502 | ||
| 8150 | 9년 전 | 615 | ||
| 8149 |
Jangfolk
|
9년 전 | 472 | |
| 8148 | 9년 전 | 285 | ||
| 8147 | 9년 전 | 468 | ||
| 8146 | 9년 전 | 553 | ||
| 8145 | 9년 전 | 509 | ||
| 8144 | 9년 전 | 476 | ||
| 8143 | 9년 전 | 308 | ||
| 8142 | 9년 전 | 518 | ||
| 8141 | 9년 전 | 462 | ||
| 8140 | 9년 전 | 1026 | ||
| 8139 | 9년 전 | 379 | ||
| 8138 |
전갈자리남자
|
9년 전 | 481 | |
| 8137 | 9년 전 | 517 | ||
| 8136 | 9년 전 | 847 | ||
| 8135 |
|
9년 전 | 889 | |
| 8134 |
PlayPixel
|
9년 전 | 628 | |
| 8133 |
|
9년 전 | 535 | |
| 8132 | 9년 전 | 574 | ||
| 8131 | 9년 전 | 933 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기