0
jQuery的驗證,在Firefox按下回車鍵時,jQuery的驗證警報被觸發多次
showErrors: function(errorMap, errorList) {
var summary = "You have the following errors: \n";
$.each(errorList, function() {
summary += " * " + this.message + "\n";
});
alert(summary);
this.defaultShowErrors();
}