我怎样才能只允许用户对帖子投赞成票或反对票一次。这是主题文件夹中的 vote.tpl。我需要改变什么?
<script type="text/javascript">
$('.unlove').click(function () {
var id = $(this).attr('entryId');
if ($(this).hasClass('unloved')) {
$(this).removeClass('unloved');
ulikedeg($(this).attr('entryId'), 0, -1);
} else {
$(this).addClass('unloved');
if ($('#post_love_' + id).hasClass('loved')) {
ulikedeg($(this).attr('entryId'), -1, 1);
$('#post_love_' + id).removeClass('loved');
} else {
ulikedeg($(this).attr('entryId'), 0, 1);
}