我有以下XML:

<Openings width="20" height="10" layers="1">
  <opening>
    <item>
      <x>1.5</x>
      <y>2.25</y>
      <width>3.5</width>
      <height>5.5</height>
      <type>rectangle</type>
    </item>
  </opening>
</Openings>


我有以下javascript代码:

$(openings).each(function(j, opening_el)
{
  console.log("layers: " + $(opening_el).attr("layers")); //This is not working
});


我希望它打印出“ layers:1”;

最佳答案

这是否help

$("Openings").attr("layers")


请告诉我这是否有帮助。

关于javascript - 如何使用jquery获取Xml属性?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23955515/

10-13 09:08