FB.api使用jquery-on函数创建了Elements

时间:2013-06-06 21:22:49

标签: javascript jquery facebook jquery-mobile jquery-on

我正在使用我的Facebook响应数据创建列表元素。

我如何使用jquery的.on(已弃用的.live)函数来从jquery.mobile中设置样式?

jquery mobile包含在头部

facebook包含在开幕式之后

if (response.status === 'connected') {
FB.api("me/friends",{
          fields:'username,name,id',
          limit:10
        },function(res){

            $.each(res['data'],function(id,val){
                $('ul#list').append(
                    'some li´s'+'some content'
                );

            })
        })
}

0 个答案:

没有答案