我使用jQuery通过Ajax获取Google Picasa网络相册的原子数据。这个原子数据如下所示:
http://code.google.com/apis/picasaweb/docs/2.0/developers_guide_protocol.html#ListAlbums
写作时
$(xhr).find('entry id').eq(0).html();
没关系。
但是
$(xhr).find('entry title').eq(0).html();
未选择
<title>
标记存在。
请告诉我如何解决此问题。谢谢!