js怎么获取xml相同节点下的不同name属性的值
我有一个xml字符串str='<Layer><Featureid="1"><Attributevalue="XXX小区"name="xmmc"/><Attributeva...
我有一个xml字符串
str ='<Layer>
<Feature id="1">
<Attribute value="XXX小区" name="xmmc"/>
<Attribute value="2008-074" name="xmbh"/>
<Attribute value="16750" name="jzmj"/>
</Feature>
<Feature id="473">
<Attribute value="XX小区" name="xmmc"/>
<Attribute value="2006-057" name="xmbh"/>
<Attribute value="17749" name="jzmj"/>
</Feature>
</Layer>'
怎么获得这个name为xmbh这个节点的值,就是获取xmbh的值 展开
str ='<Layer>
<Feature id="1">
<Attribute value="XXX小区" name="xmmc"/>
<Attribute value="2008-074" name="xmbh"/>
<Attribute value="16750" name="jzmj"/>
</Feature>
<Feature id="473">
<Attribute value="XX小区" name="xmmc"/>
<Attribute value="2006-057" name="xmbh"/>
<Attribute value="17749" name="jzmj"/>
</Feature>
</Layer>'
怎么获得这个name为xmbh这个节点的值,就是获取xmbh的值 展开
2个回答
展开全部
给你个函数,传Node,属性名进去获取属性值,兼容所有浏览器:
function getAttributeValue (xmlNode,attrName){
if(!xmlNode)return "" ;
if(!xmlNode.attributes) return "" ;
if(xmlNode.attributes[attrName]!=null) return xmlNode.attributes[attrName].value ;
if(xmlNode.attributes.getNamedItem(attrName)!=null) return xmlNode.attributes.getNamedItem(attrName).value ;
return "" ;
}
获取 p1 的值,就是 getAttributeValue(p,"p1") ;
function getAttributeValue (xmlNode,attrName){
if(!xmlNode)return "" ;
if(!xmlNode.attributes) return "" ;
if(xmlNode.attributes[attrName]!=null) return xmlNode.attributes[attrName].value ;
if(xmlNode.attributes.getNamedItem(attrName)!=null) return xmlNode.attributes.getNamedItem(attrName).value ;
return "" ;
}
获取 p1 的值,就是 getAttributeValue(p,"p1") ;
展开全部
js原生方法处理很麻烦,使用jquery框架就方便了。
代码如下:
<!--载入jquery-->
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script>
var str ='<Layer><Feature id="1"><Attribute value="XXX小区" name="xmmc"/><Attribute value="2008-074" name="xmbh"/><Attribute value="16750" name="jzmj"/></Feature><Feature id="473"><Attribute value="XX小区" name="xmmc"/><Attribute value="2006-057" name="xmbh"/><Attribute value="17749" name="jzmj"/></Feature></Layer>';
try {
var xmlDom=$.parseXML(str);//将xml解析为js DOM对象
var xmbhObj=$(xmlDom).find('[name=xmbh]');//获取对象中的所有name属性值为xmbh的元素对象(可能有多个)
xmbhObj.each(function(){//循环遍历获取到的元素对象
var value=$(this).attr('value');//获取当前元素对象中的value属性值
alert(value);//弹出一下
});
} catch(ex) {
alert('无法解析的xml')
}
</script>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询