码迷,mamicode.com
首页 > 其他好文 > 详细

点赞样式

时间:2020-07-08 15:36:19      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:点赞   this   ntp   vol   UNC   code   log   lse   raise   

//初始化点赞
var $praise_id = ‘<?php echo $praise; ?>‘;
$(function () {
    if ($praise_id){
        $(".bor:eq(0)").css({
            border: "1px solid #06c1ae",
            "border-radius": "5px",
            "color": "#06c1ae"
        }).html("已点赞");
    }
});
$(".bor:eq(0)").click(function() {
    var text = $(this).text();
    if (text == ‘点赞‘){
        $.post("{pigcms{:U(‘voluntPraise‘)}",{member_id:$("input[name=‘id‘]").val()},function (result) {
            if (result.status == 300){
                alert(result.message);
                window.location.href = "{pigcms{:U(‘Login/index‘)}";
            }else{
                $(".bor:eq(0)").css({
                    border: "1px solid #06c1ae",
                    "border-radius": "5px",
                    "color": "#06c1ae"
                }).html("已点赞");
            }
        },‘json‘)
    }

});

点赞样式

标签:点赞   this   ntp   vol   UNC   code   log   lse   raise   

原文地址:https://www.cnblogs.com/wangyuyanhello/p/13266636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!