点赞样式
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‘)
}
});
以上是关于点赞样式的主要内容,如果未能解决你的问题,请参考以下文章