是不是把这两句复制过来就行了?
<a href=" :;" id="follow" ="follow('{$userid}');">加关注a>
< type="text/ ">
function follow(userid) {
$.ajax({
type: 'POST',
url: "{U('member/index/public_follow')}",
data: 'userid='+userid,
success: function (msg) {
if(msg == 1){
$("#follow").html('已关注');
.msg("关注成功!\n以后对方发布新文章时,会在您的会员中心显示哦!", {icon:1});
}else if(msg == 2){
$("#follow").html('加关注');
.msg("已取消关注", {icon:1});
}else if(msg == 0){
.msg('请先登录!', {icon:2});
}else if(msg == -3){
.msg('不能关注自己哦~', {icon:2});
}else if(msg == -1){
.msg('该用户不存在!', {icon:2});
}else{
.msg('非法操作!', {icon:2});
}
}
});
}
</ >