数値に特定のパラメーターがあることを検証したい。たとえば、数値の小数点以下 3 桁が正であることを確認したい。私はそれを行う方法を見つけることができませんでしたが、インターネット上のさまざまな場所で検索しました。数字のみを受け入れるようにそのテキスト ボックスを作成しました。残りの機能が必要なだけです。
ありがとう、
$("#formEntDetalle").validate({
rules: {
tbCantidad: { required: true, number: true },
tbPrecioUnidad: { required: true, number: true },
}
messages: {
tbCantidad: { required: "Es Necesario Entrar una cantidad a la orden" },
tbPrecioUnidad: { required: "Es Necesario Entrar el valor valido para el producto" }
},
errorPlacement: function(error, element) {
parent = element.parent().parent();
errorPlace = parent.find(".errorCont");
errorPlace.append(error);
}
});
そのテキストボックスを次のようなもので制御したい:
$.validator.addMethod('Decimal',
function(value, element) {
//validate the number
}, "Please enter a correct number, format xxxx.xxx");