layuiのフォーム検証
3559 ワード
layui.use(['form', 'layedit', 'laydate'], function(){
var form = layui.form;
//
form.verify({
title: function(value){
if(value.length < 5){
return ' 5 ';
}
}, fname: function(value){
if(value.length < 4){
return ' 4 ';
}
}, contact: function(value){
if(value.length < 4){
return ' 4 ';
}
}
,phone: [/^1[3|4|5|7|8]\d{9}$/, ' 11 , !']
,email: [/^[a-z0-9._%-]+@([a-z0-9-]+\.)+[a-z]{2,4}$|^1[3|4|5|7|8]\d{9}$/, ' ']
});
});