前端之家收集整理的这篇文章主要介绍了
xml属性值的获取,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<EventImages>
<EventImage Value="Security.jpg" X="0" Y="0" width="450" height="615"/ >
<EventImage Value="urban.jpg" X="489" Y="0" width="450" height="615"/>
<EventImage Value="TW Step.jpg" X="0" Y="669" width="450" height="615"/>
<EventImage Value="TW notice.jpg" X="489" Y="669" width="450" height="615"/>
</EventImages>
XmlElement element = (XmlElement)child;
string width = element.GetAttribute("width");
string height = element.GetAttribute("height");
原文链接:https://www.f2er.com/xml/300127.html