ReadyStateChange后的AJAX函数调用
我正在向服务器发送 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你有一个错字。该属性实际上是
readyState
(注意大写的S
)。You have a typo. The property is actually
readyState
(note the uppercaseS
).