XML数据岛技术总结
? 最近进行解析HTMl代码的时候,碰到XML数据岛的问题,现在做完这个项目后,来总结一下。
XML 数据岛 下面我们来看看在 javascript 中怎样通过DOM访问数据岛中的数据
function accessData(url, body) {
?try {
???? if (xmlhttp != null) {
???????? return;
???? }
???? xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
?????xmlhttp.onreadystatechange = doQueryData_callback;//xml数据加载完成后回调函数
?????}
??xmlhttp.open("POST", url, asyncFlag);
??xmlhttp.setRequestHeader("Content-Type", "text/xml");
??if (body == null || body == "") {
???? xmlhttp.send();
??} else {
???? xmlhttp.send(body);
??}
??if (!asyncFlag) {
???return xmlhttp.responseXML;
??}
?}
?catch (exp) {
??throw (exp);
?}
}