如何在xmlhttp.send()之前分配xmlhttp.responseText

时间:2010-05-06 20:20:50

标签: javascript html ajax events

来自this example的新手ajax问题:
如何在xmlhttp.open()和xmlhttp.send()之前分配xmlhttp.responseText? (如果我们需要来自demo_post.asp的数据)

我知道它在onreadystatechange中,但如果从上到下读取javascript我不明白。谢谢,放轻松我!

1 个答案:

答案 0 :(得分:2)

您需要查看闭包。

onreadystatechange正在分配一个函数。该功能不会立即调用...请查看其名称。