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개
게시판 목록
팁게시판
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5977 | 9년 전 | 185 | ||
| 5976 | 9년 전 | 226 | ||
| 5975 | 9년 전 | 255 | ||
| 5974 | 9년 전 | 353 | ||
| 5973 | 9년 전 | 394 | ||
| 5972 | 9년 전 | 236 | ||
| 5971 | 9년 전 | 270 | ||
| 5970 | 9년 전 | 231 | ||
| 5969 | 9년 전 | 156 | ||
| 5968 | 9년 전 | 159 | ||
| 5967 | 9년 전 | 340 | ||
| 5966 | 9년 전 | 206 | ||
| 5965 | 9년 전 | 191 | ||
| 5964 | 9년 전 | 189 | ||
| 5963 | 9년 전 | 275 | ||
| 5962 | 9년 전 | 342 | ||
| 5961 | 9년 전 | 248 | ||
| 5960 | 9년 전 | 286 | ||
| 5959 | 9년 전 | 221 | ||
| 5958 |
|
9년 전 | 489 | |
| 5957 | 9년 전 | 327 | ||
| 5956 | 9년 전 | 289 | ||
| 5955 | 9년 전 | 298 | ||
| 5954 | 9년 전 | 211 | ||
| 5953 | 9년 전 | 352 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기