Email validation using jQuery

后端 未结 30 1894
被撕碎了的回忆
被撕碎了的回忆 2020-11-22 16:52

I\'m new to jQuery and was wondering how to use it to validate email addresses.

30条回答
  •  花落未央
    2020-11-22 17:31

    Look at http: //bassistance.de/jquery-plugins/jquery-plugin-validation/. It is nice jQuery plugin, which allow to build powerfull validation system for forms. There are some usefull samples here. So, email field validation in form will look so:

    $("#myform").validate({
      rules: {
        field: {
          required: true,
          email: true
        }
      }
    });
    

    See Email method documentation for details and samples.

提交回复
热议问题