日期:2014-05-17 浏览次数:20469 次
<script type="text/javascript">
$(document).ready(function () {
$(".user_sidebar").children("li").children("a").eq(7).addClass("cur");
$(".btn3").click(function () {
if (confirm("你确定要取消对" + $(this).parents(".p_follow").children(".right_box").children(".UInfo_box").children(".NickName").html() + "的关注吗?")) {
$.post("ashx/AttP/Attp.ashx", { uid: $(this).parents(".p_follow").attr("id") }, function (data, status) {
if (status == "success") {
if (data == "1") {
$(this).parents(".p_follow").remove();
}
else {
alert("取消关注失败");
}
}
});
}
else {
}
});
});
</script>