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년 전 | 652 | ||
| 7629 |
|
10년 전 | 2389 | |
| 7628 | 10년 전 | 792 | ||
| 7627 |
|
10년 전 | 1031 | |
| 7626 |
|
10년 전 | 1787 | |
| 7625 | 10년 전 | 707 | ||
| 7624 | 10년 전 | 724 | ||
| 7623 |
|
10년 전 | 3090 | |
| 7622 | 10년 전 | 726 | ||
| 7621 |
leeleeleelee
|
10년 전 | 585 | |
| 7620 | 10년 전 | 540 | ||
| 7619 | 10년 전 | 488 | ||
| 7618 | 10년 전 | 1024 | ||
| 7617 | 10년 전 | 726 | ||
| 7616 | 10년 전 | 647 | ||
| 7615 | 10년 전 | 726 | ||
| 7614 | 10년 전 | 1263 | ||
| 7613 |
|
10년 전 | 2085 | |
| 7612 | 10년 전 | 1144 | ||
| 7611 | 10년 전 | 1416 | ||
| 7610 |
|
10년 전 | 1901 | |
| 7609 |
|
10년 전 | 1343 | |
| 7608 |
mwdkim
|
10년 전 | 1131 | |
| 7607 |
|
10년 전 | 1053 | |
| 7606 |
mwdkim
|
10년 전 | 3927 | |
| 7605 | 10년 전 | 691 | ||
| 7604 | 10년 전 | 1027 | ||
| 7603 | 10년 전 | 1651 | ||
| 7602 |
|
10년 전 | 1078 | |
| 7601 |
AniNest
|
10년 전 | 2791 | |
| 7600 |
port443
|
10년 전 | 1031 | |
| 7599 | 10년 전 | 945 | ||
| 7598 | 10년 전 | 1020 | ||
| 7597 | 10년 전 | 4573 | ||
| 7596 |
SeungYeon
|
10년 전 | 889 | |
| 7595 |
untitled
|
10년 전 | 2425 | |
| 7594 |
프로그래머7
|
10년 전 | 1725 | |
| 7593 |
untitled
|
10년 전 | 2365 | |
| 7592 |
untitled
|
10년 전 | 1942 | |
| 7591 |
untitled
|
10년 전 | 2676 | |
| 7590 |
아리마2001
|
10년 전 | 853 | |
| 7589 | 10년 전 | 1111 | ||
| 7588 |
|
10년 전 | 2919 | |
| 7587 | 10년 전 | 1303 | ||
| 7586 | 10년 전 | 672 | ||
| 7585 | 10년 전 | 1694 | ||
| 7584 | 10년 전 | 1414 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1162 | |
| 7582 |
|
10년 전 | 1113 | |
| 7581 | 10년 전 | 1346 | ||
| 7580 | 10년 전 | 992 | ||
| 7579 |
|
10년 전 | 606 | |
| 7578 | 10년 전 | 1429 | ||
| 7577 |
|
10년 전 | 1872 | |
| 7576 | 10년 전 | 1385 | ||
| 7575 |
멋진남자임
|
10년 전 | 1463 | |
| 7574 | 10년 전 | 2123 | ||
| 7573 | 10년 전 | 3256 | ||
| 7572 | 10년 전 | 761 | ||
| 7571 |
|
10년 전 | 783 | |
| 7570 |
|
10년 전 | 1315 | |
| 7569 | 10년 전 | 1552 | ||
| 7568 |
this1mg
|
10년 전 | 1050 | |
| 7567 |
|
10년 전 | 762 | |
| 7566 | 10년 전 | 918 | ||
| 7565 |
Angel하늘
|
10년 전 | 1005 | |
| 7564 |
seoldi
|
10년 전 | 1239 | |
| 7563 |
|
10년 전 | 1382 | |
| 7562 |
멋진남자임
|
10년 전 | 2085 | |
| 7561 | 10년 전 | 714 | ||
| 7560 |
leeleeleelee
|
10년 전 | 904 | |
| 7559 | 10년 전 | 5047 | ||
| 7558 |
RinaP
|
10년 전 | 785 | |
| 7557 |
|
10년 전 | 1246 | |
| 7556 | 10년 전 | 1193 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1664 | |
| 7554 | 10년 전 | 1093 | ||
| 7553 |
senseme
|
10년 전 | 1339 | |
| 7552 |
ehdltdoit
|
10년 전 | 1436 | |
| 7551 |
|
10년 전 | 1824 | |
| 7550 |
leeleeleelee
|
10년 전 | 1589 | |
| 7549 | 10년 전 | 2425 | ||
| 7548 | 10년 전 | 1843 | ||
| 7547 |
멋진남자임
|
10년 전 | 1962 | |
| 7546 | 10년 전 | 1004 | ||
| 7545 |
ILMare1003
|
10년 전 | 1288 | |
| 7544 |
|
10년 전 | 1251 | |
| 7543 | 10년 전 | 884 | ||
| 7542 | 10년 전 | 657 | ||
| 7541 |
울라라라우
|
10년 전 | 865 | |
| 7540 | 10년 전 | 1600 | ||
| 7539 | 10년 전 | 935 | ||
| 7538 |
|
10년 전 | 1833 | |
| 7537 | 10년 전 | 3611 | ||
| 7536 |
Gaumi
|
10년 전 | 1416 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1274 | |
| 7534 |
senseme
|
10년 전 | 1207 | |
| 7533 | 10년 전 | 1196 | ||
| 7532 | 10년 전 | 859 | ||
| 7531 | 10년 전 | 2053 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기