我想验证一个数字是否具有某些参数,例如我想确保一个数字有 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");