如何使用jQuery提取fb:profile-pic uid属性值?

时间:2010-08-29 18:01:16

标签: jquery xml facebook

从以下XML中,我必须在fb:profile-pic元素上提取uid属性的值(557103888):

<li class="ui-widget-content ui-corner-tr ui-draggable">
      <fb:profile-pic height="32" width="32" linked="false" uid="557103888" style="width: 32px; height: 32px;" class=" fb_profile_pic_rendered">
          <img class="" style="width: 32px; height: 32px;" title="some name" alt="some name" src="files/t557103228_5135.jpg">
      </fb:profile-pic>
</li>

我正在使用jQuery,到目前为止还有以下代码:

function deleteImage($item) {
    $item.fadeOut(function() {
    var $list = $('ul',$trash).length ? $('ul',$trash) : $('<ul class="gallery ui-helper-reset"/>').appendTo($trash);
    $item.find('a.ui-icon-trash').remove();
    $item.appendTo($list).fadeIn(function() {
     //alert($('.fb_profile_pic_rendered').attr('uid'));
    //alert("added "+ $count + " " + $item.find('img').attr('src'));
    findUserID($item.find('img').attr('src'));
    $item.animate({ width: '48px' }).find('img').animate({ height: '36px' });
    $count++;
     })
 });
}

1 个答案:

答案 0 :(得分:0)

试试这个:

alert($('.fb_profile_pic_rendered').attr('uid'));