You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.9 KiB
44 lines
1.9 KiB
/*! jQuery Validation Plugin - v1.13.1 - 10/14/2014
|
|
* http://jqueryvalidation.org/
|
|
* Copyright (c) 2014 Jörn Zaefferer; Licensed MIT */
|
|
! function (a) {
|
|
"function" == typeof define && define.amd ? define(["jquery", "jquery.validate.min"], a) : a(jQuery)
|
|
}(function (a) {
|
|
var icon = "<i class='fa fa-times-circle'></i> ";
|
|
a.extend(a.validator.messages, {
|
|
required: icon + "此项必须填写",
|
|
remote: icon + "请修正此栏位",
|
|
email: icon + "请输入有效的电子邮件",
|
|
url: icon + "请输入有效的网址",
|
|
date: icon + "请输入有效的日期",
|
|
dateISO: icon + "请输入有效的日期 (YYYY-MM-DD)",
|
|
number: icon + "请输入正确的数字",
|
|
digits: icon + "只能输入数字",
|
|
creditcard: icon + "请输入有效的信用卡号码",
|
|
equalTo: icon + "你的输入不相同",
|
|
extension: icon + "请输入有效的后缀",
|
|
maxlength: a.validator.format(icon + "最多 {0} 个字"),
|
|
minlength: a.validator.format(icon + "最少 {0} 个字"),
|
|
rangelength: a.validator.format(icon + "请输入长度为 {0} 至 {1} 之间的字串"),
|
|
range: a.validator.format(icon + "请输入 {0} 至 {1} 之间的数值"),
|
|
max: a.validator.format(icon + "请输入不大于 {0} 的数值"),
|
|
min: a.validator.format(icon + "请输入不小于 {0} 的数值")
|
|
})
|
|
});
|
|
$.validator.setDefaults({
|
|
highlight: function(e) {
|
|
$(e).closest(".form-group").removeClass("has-success").addClass("has-error")
|
|
},
|
|
success: function(e) {
|
|
e.closest(".form-group").removeClass("has-error").addClass("has-success")
|
|
},
|
|
errorElement: "span",
|
|
errorPlacement: function(e, r) {
|
|
e.appendTo(r.is(":radio") || r.is(":checkbox") ? r.parent().parent().parent() : r.parent())
|
|
},
|
|
errorClass: "help-block m-b-none",
|
|
validClass: "help-block m-b-none"
|
|
}),
|
|
$().ready(function() {
|
|
$("#commentForm").validate();
|
|
});
|