dongshi2836 2016-02-10 10:00
浏览 55
已采纳

验证模态中的注册表单并在数据库中提交数据

In my modal I have registration form with fields of name,email,password.While using ajax alone i can add my data.now i tried with bootstrap validator.js to validate the user datas.After that my datas are not stored in database is there any connection between that validator.js and ajax.Here i enclose image.After i click submit it is showing like thatenter image description here

If anybody know the solution please help me!! Thanks in advance

Here is my code

addlistener function call for form validation

addEventListener('load', prettyPrint, false);

 $(document).ready(function () {    
    $('#registration').submit(function (event){
        event.preventDefault();
        var username = $('#username').val();
        var emailid = $('#emailid').val();
        var datas="username="+username+"&emailid="+emailid;
        $.ajax
            ({
              type:"POST",
             url: "register.php",
             data: datas
             }).done(function(data) {
            $('#register_alert').append(
                '<div class="alert alert-danger text-center">' +
                    '<button type="button" class="close" data-dismiss="alert">' +
                    '&times;</button>' + data + '</div>');
            });
    });
});

And My Html Code WIth Modal

<div class="modal fade" id="myModal" role="dialog">
    <div class="modal-dialog">
    <!-- Modal content-->
    <div class="modal-content">
        <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal">&times;</button>
          <h4 class="modal-title">Create Account</h4>
        </div>
        <div class="modal-body row">
            <div id="register_alert"></div>
                <div class="col-md-6 ">
                    <form id="registration">
                        <label>Username</label>
                        <div class="left-inner-addon ">
                        <i class="icon-user"></i><input type="text" class="form-control" placeholder="Username" name="username" id="username" data-validation="length alphanumeric" data-validation-length="min4" />
                        </div>
                        <br>
                        <label>Email ID</label>
                        <div class="left-inner-addon ">
                        <i class="icon-envelope"></i>
                        <input type="email" class="form-control" placeholder="Email ID" name="emailid" id="emailid" ></div>
                        <br/>
                        <div id="reg">
                        <button class="btn btn-theme btn-block" href="#" id="register" type="submit"><i class="fa fa-lock"></i>REGISTER</button>
                    </form>
                </div>

And My Validator Code

$('#registration').validate({
      rules: {
         username: {
          required: true,
         required: true
        },

     username: {
          minlength: 6,
          required: true
        },

        emailid: {
          required: true,
          email: true
        },

      },
      highlight: function(element) {
        $(element).closest('.control-group').removeClass('success').addClass('error');
      },
      success: function(element) {
        element
        .text('OK!').addClass('valid')
        .closest('.control-group').removeClass('error').addClass('success');
      }
});
  • 写回答

1条回答 默认 最新

  • doudun1934 2016-02-10 10:54
    关注

    There is nothing wrong with your code but the approach is wrong, you are using jQuery validation plugin to validate form and Ajax method call separately, what you could use Ajax method call $.ajax inside submithandler and the jQuery validate plugin will invoke the submit handler if the validation has passed.

    $('#registration').validate({
        rules: {
            username: {
                minlength: 6,
                required: true
            },
            emailid: {
                required: true,
                email: true
            },
        },
        highlight: function(element) {
        $(element).closest('.control-group').removeClass('success').addClass('error');
        },
        success: function(element) {
            element
            .text('OK!').addClass('valid')
            .closest('.control-group').removeClass('error').addClass('success');
        },
        submitHandler: function(form) {
            $.ajax({
                type:"POST",
                url: "register.php",
                data: $(form).serialize(),
                }).done(function(data) {
                $('#register_alert').append(
                '<div class="alert alert-danger text-center">' +
                    '<button type="button" class="close" data-dismiss="alert">' +
                    '&times;</button>' + data + '</div>');
                });
        }
    });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效