0

我正在使用我的 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'
                );

            })
        })
}
4

0 回答 0