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에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5927 | 9년 전 | 214 | ||
| 5926 | 9년 전 | 416 | ||
| 5925 | 9년 전 | 298 | ||
| 5924 | 9년 전 | 293 | ||
| 5923 | 9년 전 | 289 | ||
| 5922 |
|
9년 전 | 743 | |
| 5921 | 9년 전 | 327 | ||
| 5920 | 9년 전 | 294 | ||
| 5919 | 9년 전 | 277 | ||
| 5918 | 9년 전 | 741 | ||
| 5917 | 9년 전 | 439 | ||
| 5916 | 9년 전 | 300 | ||
| 5915 | 9년 전 | 275 | ||
| 5914 | 9년 전 | 288 | ||
| 5913 | 9년 전 | 326 | ||
| 5912 | 9년 전 | 262 | ||
| 5911 | 9년 전 | 327 | ||
| 5910 | 9년 전 | 261 | ||
| 5909 | 9년 전 | 370 | ||
| 5908 | 9년 전 | 291 | ||
| 5907 | 9년 전 | 284 | ||
| 5906 | 9년 전 | 226 | ||
| 5905 | 9년 전 | 313 | ||
| 5904 | 9년 전 | 273 | ||
| 5903 | 9년 전 | 285 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기