如何阻止在firebug中显示错误?

时间:2012-06-11 13:58:36

标签: jquery

以下代码运行正常,但当我输入错误的登录详细信息时,我会收到“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"); })
          });
       });

0 个答案:

没有答案