所以这是交易。我有一个 id="followers" 的 html 文件。我正在尝试使用 jQuery 发出获取请求以从 twitter api 获取 xml 标记:
(http://api.twitter.com/1/users/show.xml?screen_name=nightoutinc
并使用准确的信息更新 id。
我的 jquery 没有收到任何控制台错误,这让我相信一切都正确,我只是没有正确实现 get 请求。
我的 Jquery 看起来像这样:
(function ($){
getFollowers = function(){
$.get("http://api.twitter.com/1/users/show.xml?screen_name=nightoutinc", function(data){
$("followers").follower_count(data);
});
};
});
我的 html 头看起来像这样
<script type="text/javascript" src="javascripts/jquery.js"></script>
<script type="text/javascript" src="javascripts/getfollowers.js">
$(document).ready(function(){
getFollowers();
});
</script>
请告诉我,怎么了?!?
-布赖恩