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개
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 230 | 20년 전 | 2044 | ||
| 229 | 20년 전 | 3131 | ||
| 228 | 20년 전 | 3322 | ||
| 227 | 20년 전 | 2384 | ||
| 226 | 20년 전 | 5467 | ||
| 225 | 20년 전 | 2514 | ||
| 224 | 20년 전 | 2962 | ||
| 223 | 20년 전 | 4198 | ||
| 222 | 20년 전 | 2601 | ||
| 221 | 20년 전 | 2286 | ||
| 220 | 20년 전 | 3673 | ||
| 219 | 20년 전 | 2065 | ||
| 218 | 20년 전 | 3559 | ||
| 217 | 20년 전 | 2473 | ||
| 216 | 20년 전 | 2901 | ||
| 215 | 20년 전 | 2217 | ||
| 214 | 20년 전 | 3328 | ||
| 213 | 20년 전 | 2909 | ||
| 212 | 20년 전 | 3042 | ||
| 211 | 20년 전 | 2142 | ||
| 210 | 20년 전 | 1888 | ||
| 209 | 20년 전 | 2342 | ||
| 208 | 20년 전 | 1970 | ||
| 207 | 20년 전 | 1670 | ||
| 206 | 20년 전 | 1851 | ||
| 205 | 20년 전 | 3941 | ||
| 204 | 20년 전 | 1672 | ||
| 203 | 20년 전 | 2005 | ||
| 202 | 20년 전 | 2352 | ||
| 201 | 20년 전 | 1819 | ||
| 200 | 20년 전 | 2948 | ||
| 199 | 20년 전 | 2004 | ||
| 198 | 20년 전 | 2083 | ||
| 197 | 20년 전 | 3646 | ||
| 196 | 20년 전 | 2975 | ||
| 195 | 20년 전 | 2087 | ||
| 194 | 20년 전 | 10239 | ||
| 193 | 20년 전 | 2240 | ||
| 192 | 20년 전 | 1590 | ||
| 191 | 20년 전 | 2657 | ||
| 190 | 20년 전 | 2283 | ||
| 189 | 20년 전 | 1678 | ||
| 188 | 20년 전 | 1471 | ||
| 187 | 20년 전 | 1903 | ||
| 186 | 20년 전 | 1703 | ||
| 185 | 20년 전 | 1742 | ||
| 184 | 20년 전 | 2340 | ||
| 183 | 20년 전 | 1547 | ||
| 182 | 20년 전 | 1478 | ||
| 181 | 20년 전 | 1620 | ||
| 180 | 20년 전 | 2713 | ||
| 179 | 20년 전 | 1796 | ||
| 178 | 20년 전 | 1848 | ||
| 177 | 20년 전 | 1974 | ||
| 176 | 20년 전 | 1796 | ||
| 175 | 20년 전 | 1870 | ||
| 174 | 20년 전 | 1692 | ||
| 173 | 20년 전 | 2054 | ||
| 172 | 20년 전 | 1780 | ||
| 171 | 20년 전 | 2553 | ||
| 170 | 20년 전 | 2264 | ||
| 169 | 20년 전 | 2545 | ||
| 168 | 20년 전 | 1470 | ||
| 167 | 20년 전 | 1572 | ||
| 166 | 20년 전 | 2144 | ||
| 165 | 20년 전 | 1612 | ||
| 164 | 20년 전 | 3762 | ||
| 163 | 20년 전 | 2652 | ||
| 162 | 20년 전 | 2072 | ||
| 161 | 20년 전 | 2780 | ||
| 160 | 20년 전 | 1725 | ||
| 159 | 20년 전 | 1600 | ||
| 158 | 20년 전 | 2558 | ||
| 157 | 20년 전 | 1483 | ||
| 156 | 20년 전 | 1726 | ||
| 155 | 20년 전 | 3226 | ||
| 154 | 20년 전 | 1884 | ||
| 153 | 20년 전 | 1617 | ||
| 152 | 20년 전 | 4945 | ||
| 151 | 20년 전 | 4567 | ||
| 150 | 20년 전 | 3509 | ||
| 149 | 20년 전 | 3774 | ||
| 148 | 20년 전 | 7063 | ||
| 147 | 20년 전 | 3546 | ||
| 146 | 20년 전 | 2612 | ||
| 145 | 20년 전 | 2609 | ||
| 144 | 20년 전 | 7164 | ||
| 143 | 20년 전 | 4592 | ||
| 142 | 20년 전 | 1893 | ||
| 141 | 20년 전 | 3249 | ||
| 140 | 20년 전 | 1955 | ||
| 139 | 20년 전 | 1562 | ||
| 138 | 20년 전 | 2296 | ||
| 137 | 20년 전 | 1774 | ||
| 136 | 20년 전 | 1450 | ||
| 135 | 20년 전 | 1782 | ||
| 134 | 20년 전 | 2963 | ||
| 133 | 20년 전 | 2439 | ||
| 132 | 20년 전 | 1704 | ||
| 131 | 20년 전 | 1633 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기