▼入力フィールドに文字を入力すると、入力したテキストをアラート表示します。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="ja" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="imagetoolbar" content="no" />
<title>Maxlength Plugin | 設置サンプル</title>
<link rel="stylesheet" href="/content/lib/global.css" type="text/css" />
<!-- JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript" src="/content/lib/jquery/jquery.maxlength.js"></script>
<script type="text/javascript">
$(function() {
/* テキストエリア要素の文字数制限(文字数制限はhidden要素で指定) */
$('textarea.limited2').maxlength({
'feedback' : '.charsLeft',
'useInput': true
});
/* テキストエリアの入力文字数制限 */
$('textarea.limited').maxlength({
'feedback' : '.charsLeft'
});
/* input要素の文字数制限 */
$('input.limited').maxlength({
'feedback' : '.charsLeft'
});
/* 単語数の入力制限 */
$('textarea.wordLimited').maxlength({
'words': true,
'feedback': '.charsLeft'
});
});
</script>
<link rel="stylesheet" type="text/css" href="/common/css/example.css"></head>
<body id='example3' class='example'><div class="ads" style="margin:32px auto;text-align:center;"></div><h1 class='h'><a href='/'>PHP & JavaScript Room</a> :: 設置サンプル</h1>
<h3 class='h'>実行結果</h3>
<div id="wrap">
<h1><a href='http://remysharp.com/2008/06/30/maxlength-plugin/'>Maxlength Plugin</a> | 設置サンプル</h1>
<p>▼入力フィールドに文字を入力すると、入力したテキストをアラート表示します。</p>
<!-- CODE -->
<h2>テキストエリアの入力文字数制限(文字数制限はhidden要素で指定)</h2>
<form action="#">
<p>Characters left: <span class="charsLeft"></span>/20</p>
<textarea class="limited2"></textarea>
<input type="hidden" name="maxlength" value="20" />
</form>
<h2>テキストエリアの入力文字数制限</h2>
<form action="#">
<p>Characters left: <span class="charsLeft"></span>/10</p>
<textarea maxlength="10" class="limited"></textarea>
</form>
<h2>input要素の文字数制限</h2>
<form action="#">
<p>Characters left: <span class="charsLeft"></span>/10</p>
<input maxlength="10" class="limited" />
</form>
<h2>単語数の入力制限</h2>
<form action="#">
<p>Words left: <span class="charsLeft"></span>/5</p>
<textarea maxlength="5" class="wordLimited"></textarea>
</form>
<!-- / CODE -->
</div>
</body>
</html>