- 分享
- 0
- 人气
- 0
- 主题
- 46
- 帖子
- 3604
- UID
- 123250
- 积分
- 6456
- 阅读权限
- 23
- 注册时间
- 2008-2-7
- 最后登录
- 2017-5-1
- 在线时间
- 5029 小时
|
他给我这样的data,
然后要怎么才能get and display the data?
猴子的灵魂 发表于 2012-4-12 10:19 PM
不行么? 我读到了
- <script src='http://code.jquery.com/jquery-1.7.2.min.js'>
- </script>
- <script>
- $(function(){
- $.get("https://graph.facebook.com/jeeshen.lee", function(r){
- alert("id = " + r.id + ", name=" + name + ", first name =" + r.first_name + ", last name=" + r.last_name + ", link" + r.link+ ", username= " + r.username + ", gender=" + r.gender + ", locale="+ r.locale)
- }, 'json')
- })
- </script>
-
复制代码 |
|