郵便番号、携帯電話番号、居住者番号の値を受け取る3つのテキストボックスがあります。 Bellow postのjqueryを使用して、テキストボックスに数字のみを許可するソリューションを得ました。
しかし、MVC4カミソリを使用しているので、データ注釈を使用してこれを行うことはできますか?
hTML5入力type = numberで遊んでいただけです。すべてのブラウザでサポートされているわけではありませんが、タイプ固有の処理(exの数値)を処理する方法になると思います。かみそりを使うのはとても簡単です(例:VB)
@Html.TextBoxFor(Function(model) model.Port, New With {.type = "number"})
そして、C#の方法であるLee Richardsonに感謝します。
@Html.TextBoxFor(i => i.Port, new { @type = "number" })
質問の範囲を超えていますが、任意のhtml5入力タイプに対して同じアプローチを行うことができます
正規表現を使用します。
[RegularExpression("([1-9][0-9]*)", ErrorMessage = "Count must be a natural number")]
public int Count { get; set; }
@Html.TextBoxFor(m => m.PositiveNumber,
new { @type = "number", @class = "span4", @min = "0" })
razorを使用したMVC 5では、上記の例のように匿名オブジェクトに任意のhtml入力属性を追加して、入力フィールドに正の数値のみを許可できます。
テキストボックスにこのコードonkeypress="return isNumberKey(event)"
を記述し、この関数をすぐ下に示します。
<script type="text/javascript">
function isNumberKey(evt)
{
var charCode = (evt.which) ? evt.which : event.keyCode;
if (charCode != 46 && charCode > 31
&& (charCode < 48 || charCode > 57))
return false;
return true;
}
</script>
データ型属性を使用してくださいが、これは負の値を除くため、以下の正規表現はこれを回避します
[DataType(DataType.PhoneNumber,ErrorMessage="Not a number")]
[Display(Name = "Oxygen")]
[RegularExpression( @"^\d+$")]
[Required(ErrorMessage="{0} is required")]
[Range(0,30,ErrorMessage="Please use values between 0 to 30")]
public int Oxygen { get; set; }
これは私のために働いた:
<input type="text" class="numericOnly" placeholder="Search" id="txtSearch">
Javacript:
//Allow users to enter numbers only
$(".numericOnly").bind('keypress', function (e) {
if (e.keyCode == '9' || e.keyCode == '16') {
return;
}
var code;
if (e.keyCode) code = e.keyCode;
else if (e.which) code = e.which;
if (e.which == 46)
return false;
if (code == 8 || code == 46)
return true;
if (code < 48 || code > 57)
return false;
});
//Disable paste
$(".numericOnly").bind("paste", function (e) {
e.preventDefault();
});
$(".numericOnly").bind('mouseenter', function (e) {
var val = $(this).val();
if (val != '0') {
val = val.replace(/[^0-9]+/g, "")
$(this).val(val);
}
});
スクリプトでこの関数を使用し、テキストボックスの近くにスパンを配置してエラーメッセージを表示します
$(document).ready(function () {
$(".digit").keypress(function (e) {
if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
$("#errormsg").html("Digits Only").show().fadeOut("slow");
return false;
}
});
});
@Html.TextBoxFor(x => x.company.ContactNumber, new { @class = "digit" })
<span id="errormsg"></span>
can we do this using data annotations as I am using MVC4 razor ?
いいえ、あなたの質問を理解しているように、控えめな検証ではエラーのみが表示されます。最も簡単な方法は、jqueryプラグインを使用することです。
これは、数字だけを入力できるJavaScriptです。
テキストボックスのonkeypress
イベントをサブスクライブします。
@Html.TextBoxFor(m=>m.Phone,new { @onkeypress="OnlyNumeric(this);"})
以下がそのためのJavaScriptです。
<script type="text/javascript">
function OnlyNumeric(e) {
if ((e.which < 48 || e.which > 57)) {
if (e.which == 8 || e.which == 46 || e.which == 0) {
return true;
}
else {
return false;
}
}
}
</script>
お役に立てば幸いです。
[整数]データ注釈を使用できます(DataAnnotationsExtensions http://dataannotationsextensions.org/ を使用する場合)。ただし、これは値が整数であるかどうかのみをチェックし、値が入力されていない場合はチェックしません(したがって、[Required]属性も必要になる場合があります)。
控えめな検証を有効にすると、クライアント側で検証されますが、Javascriptが無効になっている場合は、POSTアクションでModelstate.Validを使用して拒否する必要があります。
ゼロより大きい10進値の場合、HTML5は次のように機能します。
<input id="txtMyDecimal" min="0" step="any" type="number">
こんにちは、次をお試しください。..
<div class="editor-field">
<%: Html.TextBoxFor(m => m.UserName, new {onkeydown="return ValidateNumber(event);" })%>
<%: Html.ValidationMessageFor(m => m.UserName) %>
</div>
スクリプト
<script type="text/javascript">
function ValidateNumber(e) {
var evt = (e) ? e : window.event;
var charCode = (evt.keyCode) ? evt.keyCode : evt.which;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false;
}
return true;
};
DataType
には、文字列をとる2番目のコンストラクタがあります。ただし、内部的には、これは実際にはUIHint
属性を使用するのと同じです。
DataType
列挙は.NETフレームワークの一部であるため、新しいコアDataTypeを追加することはできません。最も近い方法は、DataTypeAttribute
を継承する新しいクラスを作成することです。その後、独自のDataType
列挙を使用して新しいコンストラクターを追加できます。
public NewDataTypeAttribute(DataType dataType) : base(dataType)
{ }
public NewDataTypeAttribute(NewDataType newDataType) : base (newDataType.ToString();
this リンクを使用することもできます。ただし、同じためにJqueryを使用することをお勧めします。
function NumValidate(e) {
var evt = (e) ? e : window.event;
var charCode = (evt.keyCode) ? evt.keyCode : evt.which;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
alert('Only Number ');
return false;
} return true;
} function NumValidateWithDecimal(e) {
var evt = (e) ? e : window.event;
var charCode = (evt.keyCode) ? evt.keyCode : evt.which;
if (!(charCode == 8 || charCode == 46 || charCode == 110 || charCode == 13 || charCode == 9) && (charCode < 48 || charCode > 57)) {
alert('Only Number With desimal e.g.: 0.0');
return false;
}
else {
return true;
} } function onlyAlphabets(e) {
try {
if (window.event) {
var charCode = window.event.keyCode;
}
else if (e) {
var charCode = e.which;
}
else { return true; }
if ((charCode > 64 && charCode < 91) || (charCode > 96 && charCode < 123) || (charCode == 46) || (charCode == 32))
return true;
else
alert("Only text And White Space And . Allow");
return false;
}
catch (err) {
alert(err.Description);
}} function checkAlphaNumeric(e) {
if (window.event) {
var charCode = window.event.keyCode;
}
else if (e) {
var charCode = e.which;
}
else { return true; }
if ((charCode >= 48 && charCode <= 57) || (charCode >= 65 && charCode <= 90) || (charCode == 32) || (charCode >= 97 && charCode <= 122)) {
return true;
} else {
alert('Only Text And Number');
return false;
}}