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개
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8030 | 9년 전 | 339 | ||
| 8029 | 9년 전 | 280 | ||
| 8028 | 9년 전 | 246 | ||
| 8027 | 9년 전 | 262 | ||
| 8026 | 9년 전 | 300 | ||
| 8025 | 9년 전 | 359 | ||
| 8024 | 9년 전 | 323 | ||
| 8023 | 9년 전 | 377 | ||
| 8022 | 9년 전 | 304 | ||
| 8021 | 9년 전 | 302 | ||
| 8020 | 9년 전 | 299 | ||
| 8019 | 9년 전 | 326 | ||
| 8018 | 9년 전 | 423 | ||
| 8017 | 9년 전 | 522 | ||
| 8016 | 9년 전 | 313 | ||
| 8015 | 9년 전 | 375 | ||
| 8014 | 9년 전 | 310 | ||
| 8013 | 9년 전 | 219 | ||
| 8012 | 9년 전 | 235 | ||
| 8011 | 9년 전 | 433 | ||
| 8010 | 9년 전 | 286 | ||
| 8009 | 9년 전 | 272 | ||
| 8008 | 9년 전 | 274 | ||
| 8007 | 9년 전 | 414 | ||
| 8006 | 9년 전 | 451 | ||
| 8005 |
|
9년 전 | 950 | |
| 8004 | 9년 전 | 331 | ||
| 8003 | 9년 전 | 398 | ||
| 8002 | 9년 전 | 307 | ||
| 8001 |
|
9년 전 | 650 | |
| 8000 | 9년 전 | 397 | ||
| 7999 | 9년 전 | 361 | ||
| 7998 | 9년 전 | 412 | ||
| 7997 | 9년 전 | 295 | ||
| 7996 | 9년 전 | 526 | ||
| 7995 | 9년 전 | 428 | ||
| 7994 | 9년 전 | 270 | ||
| 7993 | 9년 전 | 354 | ||
| 7992 | 9년 전 | 493 | ||
| 7991 | 9년 전 | 230 | ||
| 7990 | 9년 전 | 253 | ||
| 7989 | 9년 전 | 287 | ||
| 7988 | 9년 전 | 711 | ||
| 7987 | 9년 전 | 401 | ||
| 7986 | 9년 전 | 397 | ||
| 7985 | 9년 전 | 485 | ||
| 7984 | 9년 전 | 416 | ||
| 7983 | 9년 전 | 636 | ||
| 7982 | 9년 전 | 499 | ||
| 7981 | 9년 전 | 446 | ||
| 7980 | 9년 전 | 471 | ||
| 7979 | 9년 전 | 444 | ||
| 7978 | 9년 전 | 423 | ||
| 7977 | 9년 전 | 357 | ||
| 7976 | 9년 전 | 828 | ||
| 7975 | 9년 전 | 349 | ||
| 7974 | 9년 전 | 376 | ||
| 7973 | 9년 전 | 581 | ||
| 7972 | 9년 전 | 369 | ||
| 7971 | 9년 전 | 433 | ||
| 7970 | 9년 전 | 283 | ||
| 7969 | 9년 전 | 527 | ||
| 7968 | 9년 전 | 366 | ||
| 7967 | 9년 전 | 348 | ||
| 7966 | 9년 전 | 345 | ||
| 7965 |
|
9년 전 | 1000 | |
| 7964 | 9년 전 | 387 | ||
| 7963 | 9년 전 | 372 | ||
| 7962 | 9년 전 | 354 | ||
| 7961 |
전갈자리남자
|
9년 전 | 495 | |
| 7960 | 9년 전 | 945 | ||
| 7959 | 9년 전 | 538 | ||
| 7958 | 9년 전 | 392 | ||
| 7957 | 9년 전 | 351 | ||
| 7956 | 9년 전 | 361 | ||
| 7955 | 9년 전 | 422 | ||
| 7954 | 9년 전 | 349 | ||
| 7953 | 9년 전 | 410 | ||
| 7952 | 9년 전 | 331 | ||
| 7951 | 9년 전 | 473 | ||
| 7950 | 9년 전 | 367 | ||
| 7949 | 9년 전 | 374 | ||
| 7948 | 9년 전 | 312 | ||
| 7947 | 9년 전 | 914 | ||
| 7946 | 9년 전 | 407 | ||
| 7945 | 9년 전 | 367 | ||
| 7944 | 9년 전 | 379 | ||
| 7943 | 9년 전 | 354 | ||
| 7942 | 9년 전 | 390 | ||
| 7941 | 9년 전 | 372 | ||
| 7940 | 9년 전 | 859 | ||
| 7939 | 9년 전 | 310 | ||
| 7938 | 9년 전 | 356 | ||
| 7937 | 9년 전 | 259 | ||
| 7936 | 9년 전 | 863 | ||
| 7935 | 9년 전 | 409 | ||
| 7934 | 9년 전 | 383 | ||
| 7933 | 9년 전 | 459 | ||
| 7932 | 9년 전 | 430 | ||
| 7931 | 9년 전 | 493 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기