我正在尝试使用jquery访问xml标记的属性值。 我尝试访问的xml标记属性是:
<yweather:condition code="30" date="Fri, 04 Mar 2016 12:53 pm AKST" temp="11" text="Partly Cloudy"/>
我试图在成功函数中按如下方式访问它:
alert($(xml).find('yweather:condition').attr("temp"));
但它警告“未定义”。无法理解出了什么问题
答案 0 :(得分:0)
需要使用\\
每alert($(xml).find('yweather\\:condition').attr("temp"));
尝试
{{1}}