0

XFBML を使用して Facebook ユーザーのプロフィール写真を表示しようとしています。次のコードを使用しています。

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

要素の uid 属性を設定するにはどうすればよいですか? (コメント行は機能しません)

4

1 に答える 1

3

処理のために ProfilePic に送信する前に属性を設定します。

var container = document.getElementById("profilePicture");
container.setAttribute("uid", userId);
var profilePic = new FB.XFBML.ProfilePic(container);
FB.XFBML.Host.addElement(profilePic);
于 2009-02-26T22:58:14.703 に答える