function Addfollower(id)
{
$.ajax({
type:"POST",
url:"/accounts/addfollow/",
data:"id="+id,
success:function(msg)
{
if (msg=="True")
{
$("#follower"+id).html('已关注');
}
}
}
);
}
</script>
function Addfollower(id)
{
$.ajax({
type:"POST",
url:"/accounts/addfollow/",
data:"id="+id,
success:function(msg)
{
if (msg=="True")
{
$("#follower"+id).html('已关注');
}
}
}
);
}
</script>