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

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com