完成该操作所需的数据还不可使用 博客分类: AJAX
程序员文章站
2024-03-16 08:22:34
...
原因是没有加下面两个判断条件:
if (xmlhttp.readyState == 4) {
if (xmlhttp.status == 200) {
//.......
}
}
if (xmlhttp.readyState == 4) {
if (xmlhttp.status == 200) {
//.......
}
}