ReadyStateChange后的AJAX函数调用

发布于 2024-12-15 21:23:00 字数 552 浏览 0 评论 0原文

我正在向服务器发送 Ajax 调用,并尝试在响应准备好(readystatechanged)时调用另一个函数。服务器端代码目前不存在。 Chrome 和 Firefox 中的“另一个”函数调用失败。出乎意料的是,Internet Explorer 8 调用该函数没有遇到任何问题。

我能够在 Chrome 和 Firefox 中创建 XMLHttpRequest 对象(以及 IE8 中的 ActiveXObject)。我还可以使用 open 并发送和接收readystatechanges 和状态代码。 chrome和firefox无法做的是调用函数“drawTable()”和“drawChart()”

if( xhr.readystate == 4 && xhr.status == 200 )
{
  drawTable();
  drawChart();
}

我可以使用Firebug和Google Chrome脚本工具将执行追溯到上面的if语句。成员变量readystate和status具有正确的值。与 IE8 不同,Chrome 和 Firefox 不会简单地调用这些函数。

I'm sending an Ajax call to a server and trying to call another function when the response is ready (readystatechanged). The serverside code is non existent at this moment. The "another" function call fails with Chrome and Firefox. Unexpectedly, Internet Explorer 8 has no trouble calling the function.

I'm able to create the XMLHttpRequest object in Chrome and Firefox (and an ActiveXObject in IE8). I also am able to use open and send and receive readystatechanges and statuscodes. What chrome and firefox are unable to do is call the functions "drawTable()" and "drawChart()"

if( xhr.readystate == 4 && xhr.status == 200 )
{
  drawTable();
  drawChart();
}

I can traceback the execution with Firebug and Google Chrome Script tool to the above if-statement. The member variables readystate and status have the correct values. Unlike IE8, Chrome and Firefox will not simply call the functions.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花心好男孩 2024-12-22 21:23:00

你有一个错字。该属性实际上是readyState(注意大写的S)。

You have a typo. The property is actually readyState (note the uppercase S).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文