以下代码运行正常,但当我输入错误的登录详细信息时,我会收到“NetworkError: 403 Forbidden - http://.....
”
它也出现在错误计数中。是否有可能不显示此错误?
$(document).ready(function() {
$("#login").click(function(event){
$.get(
loginURL,
{ authaccountid: $('#authaccountid').val(), authemail:$('#authemail').val(), authpassword:$('#authpassword').val()},function() {})
.success(function() { alert("success"); })
.error(function() { alert("error"); })
});
});