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년 전 | 662 | ||
| 7629 |
|
10년 전 | 2403 | |
| 7628 | 10년 전 | 797 | ||
| 7627 |
|
10년 전 | 1041 | |
| 7626 |
|
10년 전 | 1796 | |
| 7625 | 10년 전 | 722 | ||
| 7624 | 10년 전 | 737 | ||
| 7623 |
|
10년 전 | 3108 | |
| 7622 | 10년 전 | 740 | ||
| 7621 |
leeleeleelee
|
10년 전 | 592 | |
| 7620 | 10년 전 | 544 | ||
| 7619 | 10년 전 | 498 | ||
| 7618 | 10년 전 | 1034 | ||
| 7617 | 10년 전 | 733 | ||
| 7616 | 10년 전 | 659 | ||
| 7615 | 10년 전 | 734 | ||
| 7614 | 10년 전 | 1273 | ||
| 7613 |
|
10년 전 | 2087 | |
| 7612 | 10년 전 | 1159 | ||
| 7611 | 10년 전 | 1429 | ||
| 7610 |
|
10년 전 | 1909 | |
| 7609 |
|
10년 전 | 1363 | |
| 7608 |
mwdkim
|
10년 전 | 1140 | |
| 7607 |
|
10년 전 | 1067 | |
| 7606 |
mwdkim
|
10년 전 | 3944 | |
| 7605 | 10년 전 | 695 | ||
| 7604 | 10년 전 | 1035 | ||
| 7603 | 10년 전 | 1658 | ||
| 7602 |
|
10년 전 | 1084 | |
| 7601 |
AniNest
|
10년 전 | 2802 | |
| 7600 |
port443
|
10년 전 | 1041 | |
| 7599 | 10년 전 | 953 | ||
| 7598 | 10년 전 | 1034 | ||
| 7597 | 10년 전 | 4582 | ||
| 7596 |
SeungYeon
|
10년 전 | 904 | |
| 7595 |
untitled
|
10년 전 | 2438 | |
| 7594 |
프로그래머7
|
10년 전 | 1743 | |
| 7593 |
untitled
|
10년 전 | 2387 | |
| 7592 |
untitled
|
10년 전 | 1952 | |
| 7591 |
untitled
|
10년 전 | 2684 | |
| 7590 |
아리마2001
|
10년 전 | 861 | |
| 7589 | 10년 전 | 1117 | ||
| 7588 |
|
10년 전 | 2930 | |
| 7587 | 10년 전 | 1313 | ||
| 7586 | 10년 전 | 678 | ||
| 7585 | 10년 전 | 1705 | ||
| 7584 | 10년 전 | 1418 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1175 | |
| 7582 |
|
10년 전 | 1131 | |
| 7581 | 10년 전 | 1365 | ||
| 7580 | 10년 전 | 1016 | ||
| 7579 |
|
10년 전 | 612 | |
| 7578 | 10년 전 | 1435 | ||
| 7577 |
|
10년 전 | 1880 | |
| 7576 | 10년 전 | 1393 | ||
| 7575 |
멋진남자임
|
10년 전 | 1474 | |
| 7574 | 10년 전 | 2130 | ||
| 7573 | 10년 전 | 3262 | ||
| 7572 | 10년 전 | 768 | ||
| 7571 |
|
10년 전 | 786 | |
| 7570 |
|
10년 전 | 1325 | |
| 7569 | 10년 전 | 1560 | ||
| 7568 |
this1mg
|
10년 전 | 1058 | |
| 7567 |
|
10년 전 | 774 | |
| 7566 | 10년 전 | 922 | ||
| 7565 |
Angel하늘
|
10년 전 | 1016 | |
| 7564 |
seoldi
|
10년 전 | 1259 | |
| 7563 |
|
10년 전 | 1398 | |
| 7562 |
멋진남자임
|
10년 전 | 2097 | |
| 7561 | 10년 전 | 717 | ||
| 7560 |
leeleeleelee
|
10년 전 | 921 | |
| 7559 | 10년 전 | 5060 | ||
| 7558 |
RinaP
|
10년 전 | 795 | |
| 7557 |
|
10년 전 | 1258 | |
| 7556 | 10년 전 | 1201 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1673 | |
| 7554 | 10년 전 | 1103 | ||
| 7553 |
senseme
|
10년 전 | 1346 | |
| 7552 |
ehdltdoit
|
10년 전 | 1442 | |
| 7551 |
|
10년 전 | 1835 | |
| 7550 |
leeleeleelee
|
10년 전 | 1602 | |
| 7549 | 10년 전 | 2438 | ||
| 7548 | 10년 전 | 1853 | ||
| 7547 |
멋진남자임
|
10년 전 | 1970 | |
| 7546 | 10년 전 | 1013 | ||
| 7545 |
ILMare1003
|
10년 전 | 1300 | |
| 7544 |
|
10년 전 | 1260 | |
| 7543 | 10년 전 | 896 | ||
| 7542 | 10년 전 | 669 | ||
| 7541 |
울라라라우
|
10년 전 | 874 | |
| 7540 | 10년 전 | 1603 | ||
| 7539 | 10년 전 | 946 | ||
| 7538 |
|
10년 전 | 1839 | |
| 7537 | 10년 전 | 3622 | ||
| 7536 |
Gaumi
|
10년 전 | 1421 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1284 | |
| 7534 |
senseme
|
10년 전 | 1212 | |
| 7533 | 10년 전 | 1210 | ||
| 7532 | 10년 전 | 873 | ||
| 7531 | 10년 전 | 2065 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기