今日の人気記事

まだデータがありません。

数値のみ入力可能なフォームを実装「Numeric Input」

当ページのリンクには広告が含まれています。

スポンサーリンク

数値のみ入力可能なフォームを実装するプラグイン「Numeric Input」を紹介します。

jQueryプラグイン「Numeric Input」

このプラグインを使えば、指定した input要素の入力を制御し、数値だけしか入力できないようにすることができます。

オプションでは正/負の入力可否、小数点を含む/含まないといった数値に関する制御を設定することができます。

スポンサーリンク

それではデモページを編集してみてください。

「Numeric Input」のデモ

デモのソース(HTML + jQuery)


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Numeric Input のデモでーす。">
<title>Numeric Input - jQueryプラグイン</title>
</head>
<body>
<h1>Numeric Input のデモ。</h1>
<p>整数(…,-3,-2,-1,0,1,2,3…)のみ入力可能です。</p>
<p><input type="text" id="demo" /></p>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="numericInput.js"></script>
<script>
$(document).ready(function() {
  $("#demo").numericInput({
    allowNegative: true
  });
});
</script>
</body>
</html>
スポンサーリンク

関連記事(一部広告含む)