当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 3.08 KB
一键复制 编辑 原始数据 按行查看 历史
OkCoder 提交于 2017-05-24 09:52 . 添加备注信息
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="bootstrap.min.css">
<script src="vue_2.1.3.js"></script>
<script src="jquery-1.8.3.min.js"></script>
<script src="validator.js"></script>
<title>validate验证类</title>
</head>
<body>
<style>
#app{
margin-top: 50px;
}
</style>
<div class="container" id="app">
<div class="col-sm-4"></div>
<div class="col-sm-4">
<form>
<div class="form-group">
<label for="user">请输入用户名:</label>
<input type="text" class="form-control" id="user" name="userName" v-model="username">
<div class="help-block"></div>
</div>
<div class="form-group">
<label for="pwd">请输入密码:</label>
<input type="password" class="form-control" id="pwd" name="passWord" v-model="password">
<div class="help-block"></div>
</div>
<div class="form-group">
<label for="phone">请输入手机号码:</label>
<input type="tel" class="form-control" id="phone" name="phoneNumber" v-model="phone">
<div class="help-block"></div>
</div>
<div class="form-group">
<label for="email">请输入邮箱:</label>
<input type="text" class="form-control" id="email" name="emailAddress" v-model="email">
<div class="help-block"></div>
</div>
<button type="button" class="btn btn-default" @click="save">Submit</button>
</form>
</div>
<div class="col-sm-4"></div>
</div>
<script>
let vm = new Vue({
el:'#app',
data:{
username:'',
password:'',
phone:'',
email:''
},
methods:{
save(){
let _this = this;
let check = new Validator();
check.add('用户名',_this.username,[
'require',
'minLength:6',
'maxLength:10'
],$('#user'));
check.add('密码',_this.password,[
'require',
'minLength:6',
'maxLength:16'
],$('#pwd'));
check.add('手机号',_this.phone,[
'phone'
],$('#phone'))
check.add('邮箱',_this.email,[
'email'
],$('#email'))
let result = check.start();
console.log(result)
if (result['error']) {
$('.help-block').text('')
result['dom'].parents('.form-group').find('.help-block').text(result['info']);
return false;
}else{
alert('ok')
}
}
}
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化