xml地址:“http://php.weather.sina.com.cn/xml.php?city=北京&password=DJOYnieT8234jlsK&day=0”
取出status1节点值就行了,要能够兼容IE/FF/Chrome等主流浏览器
转换成xml对象后,直接可以找到节点。
打不开,用jquery读xml,可确保兼容性。
如果打不开,请刷新下,谢谢,用Jquery如何实现?能否写出来?急用,谢谢
jQuery.support.cors = true; var _url="http://php.weather.sina.com.cn/xml.php?city=重庆&password=DJOYnieT8234jlsK&day=0"; $.ajax({ url:_url, contentType:"application/xml ", dataType:"text", success:function(xml){ alert(xml); }, error:function(e){ alert("error"); }, beforeSend:function(request){ alert(request); } });