jq的ajax传值问题?

使用post传值到a.html,注册提交后浏览器返回200,get,url=http://localhost:8080/?name=haha&pwd=123,ajax的成功和错误都没有执行,按钮点击那步执行了,ajax里面不知道出了什么问题 ,求大神们解惑。

<div class="loginBox" id="register_Box">

    <form method="">

        <input type="text" name="name" placeholder="用户名">

        <input type="password" name="pwd" placeholder="密码">

        <button>注册</button>

    </form>

</div>


$register_Box.find('button').on('click',function(){

    $.ajax({

         type:"post",

         url:"a.html",

         dataType:"json",

         data:{

              username:$register_Box.find('[name="name"]').val(),

             pwd:$register_Box.find('[name="pwd"]').val()

         },       

         success:function(result){

             console.log(result);

         },

         error:function(e){

              console.log(e);

         }

     });

})


qq_伊璐_0
浏览 1995回答 2
2回答

qq_伊璐_0

打错了a.php,是个不存在的文件

橋本奈奈未

提交到html是什么鬼?还有这种操作?
打开App,查看更多内容
随时随地看视频慕课网APP