Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从这个站点了解到,在POSTAjax 请求的情况下,我们需要将request.onreadystatechange函数调用放在request.open命令之前。在GET请求中,我们通常以相反的顺序放置它们。为什么有区别?
POST
request.onreadystatechange
request.open
GET
“通常”是什么意思?您在哪里看到文件表明您应该对GET请求执行此操作? request.onreadystatechange应该永远是第一位的。通过在请求启动后定义它,您可以打开自己的可能性,即在您的处理程序建立之前触发事件。