入力可能文字数を指定する

書式

feObj = new Spry.Widget.ValidationTextField(elementID, type, {minChars:min, maxChars:max})

feObj : エレメントオブジェクト
elementID : エレメントID
type : 種類
min : 最小文字数
max : 最大文字数

説明

入力可能文字数を指定するにはSpry.Widget.ValidationTextField()の三番目のオプションでminChars、maxCharsを指定します。minCharsは最小文字数、maxCharsは最大入力可能文字数を示します。

サンプルコード [実行]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/SpryValidationTextField.css" type="text/css" media="all">
<script src="js/SpryValidationTextField.js" type="text/javascript"></script>
<script type="text/javascript"><!--
window.onload = function() {
new Spry.Widget.ValidationTextField("checkText1", "none", {minChars:2, maxChars:5});
}
// --></script>
</head>
<body>
<h1>Adobe Spry : 入力チェック サンプル</h1>
<p>2〜5文字が入力されていればOK。チェックは送信時に行われます。
<form action="send.html">
<span id="checkText1">
<input type="text" name="text1" id="text1">
<span class="textfieldRequiredMsg">何か文字を入れてください</span>
<span class="textfieldMinCharsMsg">2文字未満は受け付けません</span>
<span class="textfieldMaxCharsMsg">6文字以上は受け付けません</span>
</span>
<input type="submit" value="送信">
</form>
</body>
</html>