作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Canvas Facebook应用程序,我在JS数组中拥有所有用户 friend ,我想一一显示用户 friend 的图片+姓名,单击“下一步”按钮后,我编写的代码不起作用:
<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>
关于php - Facebook 应用程序 FBJS 帮助使用 setInnerXHTML + 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4341894/
我有一个 Canvas Facebook应用程序,我在JS数组中拥有所有用户 friend ,我想一一显示用户 friend 的图片+姓名,单击“下一步”按钮后,我编写的代码不起作用: /* I'
我是一名优秀的程序员,十分优秀!