gpt4 book ai didi

javascript - 如何使用 XFBML.ProfilePic

转载 作者:行者123 更新时间:2023-11-30 23:53:47 31 4
gpt4 key购买 nike

我正在尝试使用 XFBML 显示 Facebook 用户的个人资料图片。我正在使用以下代码:

var container = document.getElementById("profilePicture");
var profilePic = new FB.XFBML.ProfilePic(container);
//profilePic.setAttribute("uid", userId);
FB.XFBML.Host.addElement(profilePic);

如何设置元素的uid属性? (注释行不起作用)

最佳答案

在将其发送到 ProfilePic 进行处理之前设置属性:

var container = document.getElementById("profilePicture");
container.setAttribute("uid", userId);
var profilePic = new FB.XFBML.ProfilePic(container);
FB.XFBML.Host.addElement(profilePic);

关于javascript - 如何使用 XFBML.ProfilePic,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/554479/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com