火狐里面用js怎么取xml的属性

火狐里面用js怎么取xml的属性,第1张

您好!很高兴为您答疑。

getAttribute方法在火狐下也是兼容的,但是与IE下取得的内容是不同的,具体的问题您可以参考此文章:getAttribute的返回值类型(Firefox与IE兼容性)。

如果对我们的回答存在任何疑问,欢迎继续问询。

JS中有原生函数,支持解析xml字符串或者文件。

(new DOMParser())parseFromString(xxxxx)

这个代码可以解析XML字符串,为对象。

<html>

<body>

<script type="text/javascript">

try //Internet Explorer

  {

  xmlDoc=new ActiveXObject("MicrosoftXMLDOM");

  }

catch(e)

  {

  try //Firefox, Mozilla, Opera, Chrome, etc

    {

    xmlDoc=documentimplementationcreateDocument("","",null);

    }

  catch(e) {alert(emessage)}

  }

try 

  {

  xmlDocasync=false;

  xmlDocload("booksxml");

  documentwrite("xmlDoc is loaded, ready for use");

  }

catch(e) {alert(emessage)}

</script>

</body>

</html>

上面这段代码可以解析一个XML文件。

具体的可参考下面教程,或者小乐阅读(Chrome浏览器中的RSS阅读器)中的源代码

>

给你个函数,传Node,属性名进去获取属性值,兼容所有浏览器:

function getAttributeValue (xmlNode,attrName){

if(!xmlNode)return "" ;

if(!xmlNodeattributes) return "" ;

if(xmlNodeattributes[attrName]!=null) return xmlNodeattributes[attrName]value ;

if(xmlNodeattributesgetNamedItem(attrName)!=null) return xmlNodeattributesgetNamedItem(attrName)value ;

return "" ;

}

获取 p1 的值,就是 getAttributeValue(p,"p1") ;

以上就是关于火狐里面用js怎么取xml的属性全部的内容,包括:火狐里面用js怎么取xml的属性、使用js实现html加载xml内容(本地电脑使用)、js解析xml的问题(如何获取某节点的属性)等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9796830.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-02
下一篇 2023-05-02

发表评论

登录后才能评论

评论列表(0条)

保存