html获取json或者txt文件内容
发布网友
发布时间:2022-04-23 02:54
我来回答
共1个回答
热心网友
时间:2022-04-20 06:57
建议把温度值放到xml文件内
1、请把下面的代码保存为getairtemp.html
<html>
<head>
<script type="text/javascript">
var xmlhttp
function loadXMLDoc(url)
{
xmlhttp=null
// code for Mozilla, etc.
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest()
}
// code for IE
else if (window.ActiveXObject)
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
}
if (xmlhttp!=null)
{
xmlhttp.onreadystatechange=state_Change
xmlhttp.open("GET",url,true)
xmlhttp.send(null)
}
else
{
alert("Your browser does not support XMLHTTP.")
}
}
function state_Change()
{
// if xmlhttp shows "loaded"
if (xmlhttp.readyState==4)
{
// if "OK"
if (xmlhttp.status==200)
{
document.getElementById('A3').innerHTML=xmlhttp.responseText
}
else
{
alert("Problem retrieving XML data:" + xmlhttp.statusText)
}
}
}
</script>
</head>
<body onload="loadXMLDoc('\airtemp.xml')">
<h2>Get date from mytemp.xml</h2>
<p>Air Temperature: <b><span id="A3"></b></span>
</p>
</body>
</html>
2、请把以下代码保存为airtemp.xml 跟html放在同一个目录
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<airtemp>38</airtemp>
</note>
3、用IE浏览器打开html文件,应该可以在页面看到38的温度读数。
相关参考资料 http://www.w3school.com.cn/xml/xml_dom.asp