2

我试图捕捉网站是否意外进行跨域调用(例如,如果用户在 url 而不是域中键入 IP。(这是一个商业的可安装应用程序,所以我没有 IIS 控制设置任何转发等)。这不起作用:

                error: function (x, e) {
                    // If the web service failed for any of the reasons below, then we
                    // call the custom error dialog display function with the response
                    // text passed back from the erro
                    if (x.status === 405) {
                       alert("405 error")
                    } 
                }

javascript中有什么方法可以捕获405错误吗?

4

1 回答 1

0

您是否尝试过使用.ajaxError()方法?

于 2012-09-18T19:51:42.617 回答