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개
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 655 | ||
| 7629 |
|
10년 전 | 2395 | |
| 7628 | 10년 전 | 794 | ||
| 7627 |
|
10년 전 | 1037 | |
| 7626 |
|
10년 전 | 1795 | |
| 7625 | 10년 전 | 715 | ||
| 7624 | 10년 전 | 731 | ||
| 7623 |
|
10년 전 | 3098 | |
| 7622 | 10년 전 | 732 | ||
| 7621 |
leeleeleelee
|
10년 전 | 590 | |
| 7620 | 10년 전 | 541 | ||
| 7619 | 10년 전 | 495 | ||
| 7618 | 10년 전 | 1031 | ||
| 7617 | 10년 전 | 729 | ||
| 7616 | 10년 전 | 655 | ||
| 7615 | 10년 전 | 729 | ||
| 7614 | 10년 전 | 1269 | ||
| 7613 |
|
10년 전 | 2086 | |
| 7612 | 10년 전 | 1151 | ||
| 7611 | 10년 전 | 1420 | ||
| 7610 |
|
10년 전 | 1906 | |
| 7609 |
|
10년 전 | 1355 | |
| 7608 |
mwdkim
|
10년 전 | 1138 | |
| 7607 |
|
10년 전 | 1057 | |
| 7606 |
mwdkim
|
10년 전 | 3936 | |
| 7605 | 10년 전 | 695 | ||
| 7604 | 10년 전 | 1032 | ||
| 7603 | 10년 전 | 1656 | ||
| 7602 |
|
10년 전 | 1081 | |
| 7601 |
AniNest
|
10년 전 | 2796 | |
| 7600 |
port443
|
10년 전 | 1037 | |
| 7599 | 10년 전 | 948 | ||
| 7598 | 10년 전 | 1023 | ||
| 7597 | 10년 전 | 4578 | ||
| 7596 |
SeungYeon
|
10년 전 | 896 | |
| 7595 |
untitled
|
10년 전 | 2431 | |
| 7594 |
프로그래머7
|
10년 전 | 1736 | |
| 7593 |
untitled
|
10년 전 | 2380 | |
| 7592 |
untitled
|
10년 전 | 1946 | |
| 7591 |
untitled
|
10년 전 | 2680 | |
| 7590 |
아리마2001
|
10년 전 | 857 | |
| 7589 | 10년 전 | 1115 | ||
| 7588 |
|
10년 전 | 2924 | |
| 7587 | 10년 전 | 1309 | ||
| 7586 | 10년 전 | 675 | ||
| 7585 | 10년 전 | 1698 | ||
| 7584 | 10년 전 | 1414 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1164 | |
| 7582 |
|
10년 전 | 1122 | |
| 7581 | 10년 전 | 1356 | ||
| 7580 | 10년 전 | 1008 | ||
| 7579 |
|
10년 전 | 611 | |
| 7578 | 10년 전 | 1433 | ||
| 7577 |
|
10년 전 | 1876 | |
| 7576 | 10년 전 | 1392 | ||
| 7575 |
멋진남자임
|
10년 전 | 1468 | |
| 7574 | 10년 전 | 2125 | ||
| 7573 | 10년 전 | 3260 | ||
| 7572 | 10년 전 | 764 | ||
| 7571 |
|
10년 전 | 785 | |
| 7570 |
|
10년 전 | 1319 | |
| 7569 | 10년 전 | 1556 | ||
| 7568 |
this1mg
|
10년 전 | 1055 | |
| 7567 |
|
10년 전 | 766 | |
| 7566 | 10년 전 | 920 | ||
| 7565 |
Angel하늘
|
10년 전 | 1014 | |
| 7564 |
seoldi
|
10년 전 | 1248 | |
| 7563 |
|
10년 전 | 1392 | |
| 7562 |
멋진남자임
|
10년 전 | 2091 | |
| 7561 | 10년 전 | 716 | ||
| 7560 |
leeleeleelee
|
10년 전 | 913 | |
| 7559 | 10년 전 | 5052 | ||
| 7558 |
RinaP
|
10년 전 | 788 | |
| 7557 |
|
10년 전 | 1253 | |
| 7556 | 10년 전 | 1198 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1668 | |
| 7554 | 10년 전 | 1099 | ||
| 7553 |
senseme
|
10년 전 | 1341 | |
| 7552 |
ehdltdoit
|
10년 전 | 1439 | |
| 7551 |
|
10년 전 | 1831 | |
| 7550 |
leeleeleelee
|
10년 전 | 1593 | |
| 7549 | 10년 전 | 2429 | ||
| 7548 | 10년 전 | 1848 | ||
| 7547 |
멋진남자임
|
10년 전 | 1966 | |
| 7546 | 10년 전 | 1008 | ||
| 7545 |
ILMare1003
|
10년 전 | 1294 | |
| 7544 |
|
10년 전 | 1257 | |
| 7543 | 10년 전 | 891 | ||
| 7542 | 10년 전 | 662 | ||
| 7541 |
울라라라우
|
10년 전 | 870 | |
| 7540 | 10년 전 | 1601 | ||
| 7539 | 10년 전 | 940 | ||
| 7538 |
|
10년 전 | 1835 | |
| 7537 | 10년 전 | 3616 | ||
| 7536 |
Gaumi
|
10년 전 | 1418 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1279 | |
| 7534 |
senseme
|
10년 전 | 1209 | |
| 7533 | 10년 전 | 1206 | ||
| 7532 | 10년 전 | 865 | ||
| 7531 | 10년 전 | 2061 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기