フォーム情報のリアルタイム検証
773 ワード
//
// input , -.
// input class
$('.numAlpha').on("input propertychange", function () {
var val = $(this).val();
val = val.replace(/[^\w#\.\/\-]/ig, '');
$(this).val(val);
});
// ,
// input ,
// input class
$('.numAlpha').on("input propertychange", function () {
var reg= /^([1-9]\d?|99)$/;
if(!reg.test($(this).val())){
$(this).val("")
}
});