2012-04-19 84 views
1

我要去列出從XML文件看起來像這樣一些項目:如何讀取從XML標籤屬性HTML

<artist href="spotify:artist:1gR0gsQYfi6joyO1dlp76N"> 
<name>Justice</name> 
<popularity>0.59872</popularity> 
</artist> 

它是由http://ws.spotify.com/search/1/artist?q=justice

我的代碼看起來是這樣的要求:

var x=xmlDoc.getElementsByTagName("artist"); 
for (i=0;i<x.length;i++) 
{ 
document.write("<tr><td>"); 
document.write(x[i].getElementsByTagName("name")[0].childNodes[0].nodeValue); 

document.write("</td><td>"); 
document.write(x[i].getElementsByTagName("popularity")[0].childNodes[0].nodeValue); 

document.write("</td><td>"); 
document.write(x[i].HOW DO I GET THE SPOTIFY URI); 

document.write("</td></tr>"); 
} 
document.write("</table>"); 

一切工作正常,但我不知道如何讓Spotify的URL到表

回答