我收到以下错误。



这是我得到错误运行时间的代码。

xhttp.setRequestHeader("Content-type","application/xhtml+xml");<br>
xhttp.open("POST",xmlFile,true);<br>
xhttp.send(postData);

我尝试在xhttp.open的第三个参数中使用false
谁能告诉我是什么原因造成的?

最佳答案

错误来自执行顺序:

xhttp.open("POST",xmlFile,true);
xhttp.setRequestHeader("Content-type","application/xhtml+xml");
xhttp.send(postData);

您必须首先打开连接,然后设置请求 header ,否则将收到错误。

关于javascript - 未捕获的错误: INVALID_STATE_ERR: DOM Exception 11,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12072315/

10-12 03:31