Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的 XML 文件的片段
<data page="1" totalpages="1" records="10" totalrecords="10"> <storylistsview> <story_id>158</story_id>
我想访问父节点中的记录属性。任何人都可以简单地解释如何做到这一点。我可以很好地访问其余的 xml。
我试过stage1 = $(xml).attr('records'); 了,我没有运气
stage1 = $(xml).attr('records');
$($.parseXML(xml)).find('data').attr('records');
请参阅工作jsfiddle。