书上写的是实现一个回调来得到Twitter发回的最新微博,我把twitter地址改为微博,没有反应。
JSONP调用:
<script src="http://weibo.com/status/user_timeline/username.json?callback=updateWeibos"> </script>
JS文件:
function updateWeibos(weibos){
var weibosSelection=document.getElementById("weibos");
for(var i=0;i<weibos.length;i++){
weibo=weibos[i];
var option=document.creatsElement("options");
option.text=weibo.text;
option.value=weibo.text.replace("\"","'");
weibosSelection.options.add(option);
}
weibosSelection.selectedIndex=0;
}
相关分类