gpt4 book ai didi

javascript xmlhttprequest 不起作用

转载 作者:行者123 更新时间:2023-11-28 16:35:45 25 4
gpt4 key购买 nike

我正在为一个新项目学习 javascript。我看过很多关于javascript和xmlhttprequest的教程,但是当我尝试运行解码时它不起作用。有人可以帮助我吗?

这是我的 html+javascript 代码:



<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>xml reader</title>
</head>

<body>
<script type="text/javascript">
var xmlhttp;
var xmldoc;
if(window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
}else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=stateChange();
xmlhttp.open("GET","info.xml",true);
xmlhttp.send(null);
xmldoc = xmlhttp.responceXML.documentElement;
document.write(xmlhttp.getElementsByTagName("vakken")[0].childNodes[0].nodeValue);
</script>
</body>
</html>
</code></pre>

这是我的 xml 文件:



<pre><code><?xml version="1.0" encoding="utf-8"?>
<info>
<name>test</name>
<nummber>10</nummber>
</info>
</code></pre>

最佳答案

也许您应该使用 xmlhttp.onreadystatechange 并将其设置为真正的函数。上面的示例中不存在函数 stateChange()。

这里有一个很好的工作示例,它的功能与您几乎相同: http://www.w3schools.com/ajax/tryit.asp?filename=tryajax_first

关于javascript xmlhttprequest 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4141879/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com