点赞样式

Posted wangyuyanhello

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了点赞样式相关的知识,希望对你有一定的参考价值。

//初始化点赞
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‘)
    }

});

以上是关于点赞样式的主要内容,如果未能解决你的问题,请参考以下文章

CSS代码片段

文章点赞功能(Ajax)

javascript 即兼容性升级页面样式片段

html addthis分享片段和prelim样式

使用 Python 代码片段编写 LaTeX 文档

VS Code中自定义Emmet代码片段