使用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
橋本奈奈未
相关分类