I'm using jQuery 1.2.6 (I know it's old, but I don't have a choice) I need to check the status of my ajax calls. I either want to use:
`statusCode`, or I could even use `error(jqXHR, textStatus, errorThrown)`, except that `textStatus`, `errorThrown` and `statusCode`, aren't in my jQuery version.
Basically what I have to do, is know if the ajax call was aborted, or had an error for another reason. Any ideas how I can do this?
以上就是How to find the ajax status with jQuery 1.2.6的详细内容,更多请关注web前端其它相关文章!