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에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 6027 | 9년 전 | 290 | ||
| 6026 | 9년 전 | 252 | ||
| 6025 | 9년 전 | 216 | ||
| 6024 | 9년 전 | 384 | ||
| 6023 | 9년 전 | 256 | ||
| 6022 | 9년 전 | 264 | ||
| 6021 | 9년 전 | 254 | ||
| 6020 | 9년 전 | 233 | ||
| 6019 | 9년 전 | 205 | ||
| 6018 | 9년 전 | 185 | ||
| 6017 | 9년 전 | 219 | ||
| 6016 | 9년 전 | 209 | ||
| 6015 | 9년 전 | 180 | ||
| 6014 | 9년 전 | 141 | ||
| 6013 | 9년 전 | 236 | ||
| 6012 | 9년 전 | 182 | ||
| 6011 | 9년 전 | 204 | ||
| 6010 | 9년 전 | 191 | ||
| 6009 | 9년 전 | 253 | ||
| 6008 | 9년 전 | 158 | ||
| 6007 | 9년 전 | 173 | ||
| 6006 | 9년 전 | 230 | ||
| 6005 | 9년 전 | 187 | ||
| 6004 | 9년 전 | 263 | ||
| 6003 | 9년 전 | 240 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기