フォーム フィールドに次の検証があります。
$(".controlsphone input").blur(function() {
var ree = /^\d+$/;
if(ree.test(document.getElementById("register_telephone").value))
{
$(this).css('border-color','green');
$(this).siblings('.info').css('display','none');
$(this).siblings('.error').css('display','none');
$(this).siblings('.valid').css('display','inline-block');
$("#email_error401112").hide();
$('#registerErrors').hide();
}
else
{
$('#registerErrors').show();
$('#email_error401112').remove();
$('#registerErrors').append('<p id="email_error401112">Please enter a phone number</p>');
}
});
数値が存在する場合にのみフィールドを検証したいと思います。フィールドは必須ではありませんが、フィールド内にコンテンツがある場合は有効である必要があります (数値)
上記のコードはどのように見えますか? これを実装するために私ができることはありますか?
乾杯、ダン