我有一个画布Facebook应用程序,我在JS数组中有所有用户朋友,我想一个接一个地显示用户朋友的图片+名称,单击NEXT按钮后,我编写的代码不起作用:

<script>
<!--
var friends = new Array(); //Friends Array
<?php
for($i=0; $i<= $limit; $i++) //Add to JS array all friends id's from PHP array
{
echo 'friends['.$i.'] = '.$appfriends[$i][uid].';';
}
?>

/*
I'm passing to this function the first Array --> 0 to increment it each time Next Friend clicked, and show the next friend picture then change Next Friend URL with the next friend Array Key
*/

function get_friends(id){
var fid;
fid = id++;
var fid_img = "<img src=\"https://graph.facebook.com/"+friends[fid]+"/picture\"/>";
var fid_link = "<a href=\"#\" onclick=\"get_friends("+fid+"); return false;\">Next Friend</a>";

//Changing Friend Image
document.getElementById('show_friends').setInnerXHTML(fid_img);

//Changing Next Friend URL
document.getElementById('next_friend').setInnerXHTML(fid_link);
}
//-->
</script>

<div id="show_friends">
<img src="https://graph.facebook.com/<?php echo $appfriends[0][uid];?>/picture"/>
</div>

<br>

<span id="next_friend"><a href="#" onclick="get_friends(0); return false;">Next Friend</a></span>


FBJS文档:http://developers.facebook.com/docs/fbjs

对不起,我的英语不好。
提前致谢!

最佳答案

我解决了问题,使用FBJS创建一个数组
你必须使用

<script>
<!--
var arrayname = [];

//instead of

var arrayname = new Array;
//-->
</script>

09-20 03:43