我正在尝试使用bootstrap进行验证。 我尝试使用here作为解决方案,但它无效。
<form id="tryitForm" class="form-horizontal">
<div class="form-group">
<label class="col-md-3 control-label">Full name</label>
<div class="col-md-4">
<input type="text" class="form-control" name="firstName" />
</div>
<div class="col-md-4">
<input type="text" class="form-control" name="lastName" />
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">Email address</label>
<div class="col-md-6">
<input type="text" class="form-control" name="email" />
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label">Gender</label>
<div class="col-md-6">
<div class="radio">
<label><input type="radio" name="gender" value="male" /> Male</label>
</div>
<div class="radio">
<label><input type="radio" name="gender" value="female" /> Female</label>
</div>
<div class="radio">
<label><input type="radio" name="gender" value="other" /> Other</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-md-offset-3 col-md-8">
<button type="submit" class="btn btn-primary">Say hello</button>
</div>
</div>
</form>
我添加了正确的js文件,请参阅fiddle link。 请帮助了解问题所在。
答案 0 :(得分:4)
这是一个有效的jsfiddle:http://jsfiddle.net/P28nR/1/
缺少或不正确的事情是:
// cdnjs.cloudflare.com/ajax/libs/bootstrap-validator/0.4.5/css/bootstrapvalidator.min.css //cdnjs.cloudflare.com/ajax/libs/bootstrap-validator/0.4.5/js/bootstrapvalidator.min.js
您没有添加javascript来配置和运行验证器插件
$(document).ready(function() {
$('#tryitForm').bootstrapValidator({
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
firstName: {
validators: {
notEmpty: {
message: 'The first name is required and cannot be empty'
}
}
},
lastName: {
validators: {
notEmpty: {
message: 'The last name is required and cannot be empty'
}
}
},
email: {
validators: {
notEmpty: {
message: 'The email address is required'
},
emailAddress: {
message: 'The input is not a valid email address'
}
}
},
gender: {
validators: {
notEmpty: {
message: 'The gender is required'
}
}
}
},
submitHandler: function(validator, form, submitButton) {
var fullName = [validator.getFieldElements('firstName').val(),
validator.getFieldElements('lastName').val()].join(' ');
alert('Hello ' + fullName);
}
});
});
答案 1 :(得分:2)
您没有包含jQuery。 Bootstrap插件需要jQuery。
你有两次jqBootstrapValidation:首先是人类可读的版本,然后是缩小版本。仅包括缩小版本。
加载外部JS库时,顺序很重要。首先加载jQuery,然后加载Bootstrap脚本,然后加载任何其他插件。 JS从上到下执行,因此必须在脚本之前加载依赖项。
答案 2 :(得分:0)
尝试将 (scrpit form-validation.js) 文件放在 body 标签的最后
<body>
<script src="form-validation.js"></script>
</body>