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년 전 | 132 | ||
| 8229 | 9년 전 | 121 | ||
| 8228 |
커네드커네드
|
9년 전 | 161 | |
| 8227 | 9년 전 | 208 | ||
| 8226 | 9년 전 | 223 | ||
| 8225 | 9년 전 | 199 | ||
| 8224 | 9년 전 | 201 | ||
| 8223 | 9년 전 | 175 | ||
| 8222 |
|
9년 전 | 248 | |
| 8221 | 9년 전 | 157 | ||
| 8220 | 9년 전 | 188 | ||
| 8219 | 9년 전 | 155 | ||
| 8218 | 9년 전 | 195 | ||
| 8217 |
star3840
|
9년 전 | 162 | |
| 8216 | 9년 전 | 236 | ||
| 8215 | 9년 전 | 182 | ||
| 8214 | 9년 전 | 291 | ||
| 8213 | 9년 전 | 247 | ||
| 8212 | 9년 전 | 154 | ||
| 8211 | 9년 전 | 329 | ||
| 8210 | 9년 전 | 332 | ||
| 8209 | 9년 전 | 403 | ||
| 8208 | 9년 전 | 299 | ||
| 8207 | 9년 전 | 297 | ||
| 8206 |
|
9년 전 | 252 | |
| 8205 | 9년 전 | 231 | ||
| 8204 | 9년 전 | 211 | ||
| 8203 | 9년 전 | 285 | ||
| 8202 | 9년 전 | 201 | ||
| 8201 | 9년 전 | 248 | ||
| 8200 | 9년 전 | 250 | ||
| 8199 | 9년 전 | 262 | ||
| 8198 | 9년 전 | 234 | ||
| 8197 | 9년 전 | 224 | ||
| 8196 | 9년 전 | 631 | ||
| 8195 | 9년 전 | 229 | ||
| 8194 | 9년 전 | 342 | ||
| 8193 | 9년 전 | 243 | ||
| 8192 | 9년 전 | 264 | ||
| 8191 | 9년 전 | 211 | ||
| 8190 | 9년 전 | 209 | ||
| 8189 | 9년 전 | 269 | ||
| 8188 | 9년 전 | 203 | ||
| 8187 | 9년 전 | 207 | ||
| 8186 | 9년 전 | 205 | ||
| 8185 | 9년 전 | 375 | ||
| 8184 | 9년 전 | 163 | ||
| 8183 | 9년 전 | 387 | ||
| 8182 | 9년 전 | 245 | ||
| 8181 | 9년 전 | 193 | ||
| 8180 | 9년 전 | 774 | ||
| 8179 | 9년 전 | 544 | ||
| 8178 | 9년 전 | 400 | ||
| 8177 |
kiplayer
|
9년 전 | 400 | |
| 8176 | 9년 전 | 430 | ||
| 8175 | 9년 전 | 313 | ||
| 8174 | 9년 전 | 314 | ||
| 8173 | 9년 전 | 402 | ||
| 8172 | 9년 전 | 278 | ||
| 8171 | 9년 전 | 243 | ||
| 8170 | 9년 전 | 366 | ||
| 8169 |
커네드커네드
|
9년 전 | 314 | |
| 8168 | 9년 전 | 398 | ||
| 8167 | 9년 전 | 386 | ||
| 8166 | 9년 전 | 292 | ||
| 8165 | 9년 전 | 237 | ||
| 8164 | 9년 전 | 368 | ||
| 8163 | 9년 전 | 362 | ||
| 8162 | 9년 전 | 365 | ||
| 8161 | 9년 전 | 380 | ||
| 8160 |
|
9년 전 | 576 | |
| 8159 | 9년 전 | 519 | ||
| 8158 | 9년 전 | 327 | ||
| 8157 | 9년 전 | 433 | ||
| 8156 | 9년 전 | 321 | ||
| 8155 | 9년 전 | 313 | ||
| 8154 |
00년생용띠
|
9년 전 | 656 | |
| 8153 | 9년 전 | 297 | ||
| 8152 |
|
9년 전 | 479 | |
| 8151 | 9년 전 | 477 | ||
| 8150 | 9년 전 | 581 | ||
| 8149 |
Jangfolk
|
9년 전 | 433 | |
| 8148 | 9년 전 | 248 | ||
| 8147 | 9년 전 | 446 | ||
| 8146 | 9년 전 | 527 | ||
| 8145 | 9년 전 | 472 | ||
| 8144 | 9년 전 | 437 | ||
| 8143 | 9년 전 | 271 | ||
| 8142 | 9년 전 | 489 | ||
| 8141 | 9년 전 | 436 | ||
| 8140 | 9년 전 | 992 | ||
| 8139 | 9년 전 | 342 | ||
| 8138 |
전갈자리남자
|
9년 전 | 450 | |
| 8137 | 9년 전 | 485 | ||
| 8136 | 9년 전 | 812 | ||
| 8135 |
|
9년 전 | 848 | |
| 8134 |
PlayPixel
|
9년 전 | 592 | |
| 8133 |
|
9년 전 | 505 | |
| 8132 | 9년 전 | 539 | ||
| 8131 | 9년 전 | 889 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기