jQuery表单验证
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery表单验证相关的知识,希望对你有一定的参考价值。
this requires jquery.js, jquery.metadata.js, and jquery.validate,js
//contact-form validation $("form#contact-form").validate({ errorPlacement: function(error, element) { //appends error message to the p tag of the form field error.appendTo( element.parent("p") ); } });
以上是关于jQuery表单验证的主要内容,如果未能解决你的问题,请参考以下文章