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년 전 | 116 | ||
| 8229 | 9년 전 | 110 | ||
| 8228 |
커네드커네드
|
9년 전 | 154 | |
| 8227 | 9년 전 | 191 | ||
| 8226 | 9년 전 | 208 | ||
| 8225 | 9년 전 | 190 | ||
| 8224 | 9년 전 | 184 | ||
| 8223 | 9년 전 | 162 | ||
| 8222 |
|
9년 전 | 240 | |
| 8221 | 9년 전 | 143 | ||
| 8220 | 9년 전 | 179 | ||
| 8219 | 9년 전 | 140 | ||
| 8218 | 9년 전 | 188 | ||
| 8217 |
star3840
|
9년 전 | 158 | |
| 8216 | 9년 전 | 224 | ||
| 8215 | 9년 전 | 176 | ||
| 8214 | 9년 전 | 272 | ||
| 8213 | 9년 전 | 223 | ||
| 8212 | 9년 전 | 139 | ||
| 8211 | 9년 전 | 310 | ||
| 8210 | 9년 전 | 318 | ||
| 8209 | 9년 전 | 389 | ||
| 8208 | 9년 전 | 282 | ||
| 8207 | 9년 전 | 283 | ||
| 8206 |
|
9년 전 | 241 | |
| 8205 | 9년 전 | 223 | ||
| 8204 | 9년 전 | 195 | ||
| 8203 | 9년 전 | 272 | ||
| 8202 | 9년 전 | 192 | ||
| 8201 | 9년 전 | 234 | ||
| 8200 | 9년 전 | 231 | ||
| 8199 | 9년 전 | 256 | ||
| 8198 | 9년 전 | 221 | ||
| 8197 | 9년 전 | 212 | ||
| 8196 | 9년 전 | 609 | ||
| 8195 | 9년 전 | 213 | ||
| 8194 | 9년 전 | 328 | ||
| 8193 | 9년 전 | 220 | ||
| 8192 | 9년 전 | 250 | ||
| 8191 | 9년 전 | 202 | ||
| 8190 | 9년 전 | 202 | ||
| 8189 | 9년 전 | 253 | ||
| 8188 | 9년 전 | 191 | ||
| 8187 | 9년 전 | 191 | ||
| 8186 | 9년 전 | 195 | ||
| 8185 | 9년 전 | 367 | ||
| 8184 | 9년 전 | 151 | ||
| 8183 | 9년 전 | 372 | ||
| 8182 | 9년 전 | 224 | ||
| 8181 | 9년 전 | 185 | ||
| 8180 | 9년 전 | 762 | ||
| 8179 | 9년 전 | 533 | ||
| 8178 | 9년 전 | 380 | ||
| 8177 |
kiplayer
|
9년 전 | 388 | |
| 8176 | 9년 전 | 420 | ||
| 8175 | 9년 전 | 293 | ||
| 8174 | 9년 전 | 295 | ||
| 8173 | 9년 전 | 388 | ||
| 8172 | 9년 전 | 253 | ||
| 8171 | 9년 전 | 230 | ||
| 8170 | 9년 전 | 349 | ||
| 8169 |
커네드커네드
|
9년 전 | 305 | |
| 8168 | 9년 전 | 375 | ||
| 8167 | 9년 전 | 372 | ||
| 8166 | 9년 전 | 280 | ||
| 8165 | 9년 전 | 218 | ||
| 8164 | 9년 전 | 360 | ||
| 8163 | 9년 전 | 347 | ||
| 8162 | 9년 전 | 354 | ||
| 8161 | 9년 전 | 367 | ||
| 8160 |
|
9년 전 | 558 | |
| 8159 | 9년 전 | 501 | ||
| 8158 | 9년 전 | 312 | ||
| 8157 | 9년 전 | 426 | ||
| 8156 | 9년 전 | 311 | ||
| 8155 | 9년 전 | 303 | ||
| 8154 |
00년생용띠
|
9년 전 | 642 | |
| 8153 | 9년 전 | 282 | ||
| 8152 |
|
9년 전 | 465 | |
| 8151 | 9년 전 | 462 | ||
| 8150 | 9년 전 | 567 | ||
| 8149 |
Jangfolk
|
9년 전 | 411 | |
| 8148 | 9년 전 | 232 | ||
| 8147 | 9년 전 | 431 | ||
| 8146 | 9년 전 | 507 | ||
| 8145 | 9년 전 | 458 | ||
| 8144 | 9년 전 | 421 | ||
| 8143 | 9년 전 | 253 | ||
| 8142 | 9년 전 | 482 | ||
| 8141 | 9년 전 | 429 | ||
| 8140 | 9년 전 | 976 | ||
| 8139 | 9년 전 | 328 | ||
| 8138 |
전갈자리남자
|
9년 전 | 436 | |
| 8137 | 9년 전 | 467 | ||
| 8136 | 9년 전 | 801 | ||
| 8135 |
|
9년 전 | 836 | |
| 8134 |
PlayPixel
|
9년 전 | 575 | |
| 8133 |
|
9년 전 | 492 | |
| 8132 | 9년 전 | 511 | ||
| 8131 | 9년 전 | 877 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기