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에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 77 | 20년 전 | 2902 | ||
| 76 | 20년 전 | 6210 | ||
| 75 | 20년 전 | 4452 | ||
| 74 | 20년 전 | 5750 | ||
| 73 | 20년 전 | 3604 | ||
| 72 | 20년 전 | 5936 | ||
| 71 | 20년 전 | 3095 | ||
| 70 | 20년 전 | 2817 | ||
| 69 | 20년 전 | 2622 | ||
| 68 | 20년 전 | 2433 | ||
| 67 | 20년 전 | 2642 | ||
| 66 | 20년 전 | 2663 | ||
| 65 | 20년 전 | 3792 | ||
| 64 | 20년 전 | 2805 | ||
| 63 | 20년 전 | 2392 | ||
| 62 | 20년 전 | 2240 | ||
| 61 | 20년 전 | 3028 | ||
| 60 | 20년 전 | 3099 | ||
| 59 | 20년 전 | 2482 | ||
| 58 | 20년 전 | 2567 | ||
| 57 | 20년 전 | 2941 | ||
| 56 | 20년 전 | 2244 | ||
| 55 | 20년 전 | 2723 | ||
| 54 | 20년 전 | 2096 | ||
| 53 | 20년 전 | 2326 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기