尝试将此 Reddit-style Voting With PHP, MySQL And jQuery工作。
问题:当我点击“投票”或“投票”时,它不会返回任何内容。页面上什么都没发生。
我已经确定votes.php
页面正在工作,但无法弄清楚为什么其余部分没有。
基本上,有3组代码:
01。 jQuery脚本进入< head
>,
< body
>内的 02。 html (显示:投票按钮和结果)/ index.php
...
03。:jquery将操作发送到的PHP页面(votes.php
)。
01。)放在我的< head
>中:
<script type="text/javascript" src="http://site.com/js/jquery.pack.js"></script>
<script type="text/javascript">
$(function(){
$("a.vote_up").click(function(){
//get the id
the_id = $(this).attr('id');
// show the spinner
$(this).parent().html("<img src='images/spinner.gif'/>");
//fadeout the vote-count
$("span#votes_count"+the_id).fadeOut("fast");
//the main ajax request
$.ajax({
type: "POST",
data: "action=vote_up&id="+$(this).attr("id"),
url: "votes.php",
success: function(msg)
{
$("span#votes_count"+the_id).html(msg);
//fadein the vote count
$("span#votes_count"+the_id).fadeIn();
//remove the spinner
$("span#vote_buttons"+the_id).remove();
}
});
});
$("a.vote_down").click(function(){
//get the id
the_id = $(this).attr('id');
// show the spinner
$(this).parent().html("<img src='images/spinner.gif'/>");
//the main ajax request
$.ajax({
type: "POST",
data: "action=vote_down&id="+$(this).attr("id"),
url: "votes.php",
success: function(msg)
{
$("span#votes_count"+the_id).fadeOut().html(msg).fadeIn();
$("span#vote_buttons"+the_id).remove();
}
});
});
});
</script>
02。)放置在&lt; body
&gt;内的循环内:
(投票按钮&amp;结果应显示)
<div class=\"entry\">
<span class=\"votes_count\" id=\"votes_count" .$id. "\">" .$effective_vote. " votes</span>
<span class=\"vote_buttons\" id=\"vote_buttons" .$id. "\">
<a href=\"javascript:;\" class=\"vote_up\" id=\"" .$id. "\">Vote Up!</a>
<a href=\"javascript:;\" class=\"vote_down\" id=\"" .$id. "\">Vote Down!</a>
</span>
</div>
03。)我的votes.php
页面(行动发生的地方):
// Database connection here //
function getAllVotes($id)
{
$votes = array();
$q = "SELECT * FROM cover WHERE id='$id' ";
$r = mysql_query($q) or die("Error: ". mysql_error(). " with query ". $q);
if(mysql_num_rows($r)==1) {
$row = mysql_fetch_assoc($r);
$votes[0] = $row['votes_up'];
$votes[1] = $row['votes_down'];
}
return $votes;
}
function getEffectiveVotes($id)
{
/**
Returns an integer
**/
$votes = getAllVotes($id);
$effectiveVote = $votes[0] - $votes[1];
return $effectiveVote;
}
$id = $_POST['id'];
$action = $_POST['action'];
//get the current votes
$cur_votes = getAllVotes($id);
//ok, now update the votes
if($action=='vote_up') //voting up
{
$votes_up = $cur_votes[0]+1;
$q = "UPDATE cover SET votes_up = $votes_up WHERE id = $id";
}
elseif($action=='vote_down') //voting down
{
$votes_down = $cur_votes[1]+1;
$q = "UPDATE cover SET votes_down = $votes_down WHERE id = $id";
}
$r = mysql_query($q);
if($r) //voting done
{
$effectiveVote = getEffectiveVotes($id);
echo $effectiveVote." votes";
}
elseif(!$r) //voting failed
{
echo "Failed!";
}
具体来说,与网上提供的其他评级方法相比,我特别喜欢的是,它返回总票数(从投票中减去投票结果,并返回该值)。
我没有做很多jQuery或ajax,有时让我困惑,但我有非常基本的简单知识。 (我通常只是按照代码)
+此外,如何将其转换为PDO版本,而不是使用MySQL查询?如果有人可以另外帮助我,我将不胜感激。的:○)
不确定如何在StackOverflow上通知用户,但该项目的开发人员是:
用户: abhisek (用户:4507330 )
感谢您的时间!希望有人可以诊断出问题的根源。
答案 0 :(得分:2)
由于您在同一页面中使用jQuery和prototype.js,因此需要注意如何使用$
函数(因为两个框架都声明了该名称)。一个选项是用以下内容替换主要功能:
jQuery(function($) {
...
});
这样,您就可以在该块中使用$
作为jQuery
的别名(但您将无法访问prototype.js)。另一个选择是使用jQuery的noConflict
。查看文档以获取有关如何使用它的更多信息。
答案 1 :(得分:0)
您可能喜欢这个Jquery Ajax投票系统
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" language="javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function () {
$(".voteMe").click(function() {
var voteId = this.id;
var upOrDown = voteId.split('_');
$.ajax({
type: "post",
url: "<?= base_url();?>/index.php/article/voteMe",
cache: false,
data:'voteId='+upOrDown[0] + '&upOrDown=' +upOrDown[1],
success: function(response){
try{
if(response=='true'){
var newValue = parseInt($("#"+voteId+'_result').text()) + 1;
$("#"+voteId+'_result').html(newValue);
}else{
alert('Sorry Unable to update..');
}
}catch(e) {
alert('Exception while request..');
}
},
error: function(){
alert('Error while request..');
}
});
});
});
</script>
<style>
ul,ol,li{
list-style-type: none;
}
h2{
color: #2864B4;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<?php
if(is_array($VOTES) && count($VOTES) ) {
?>
<div>
<ul>
<?php foreach($VOTES as $loop){ ?>
<li>
<div>
<h2><?=$loop->VOTE_DESC;?></h2>
<span><a id="<?=$loop->VOTE_ID;?>_upvote" class="voteMe"><img src="<?= base_url();?>/img/images/up_vote.png"/></a><span id="<?=$loop->VOTE_ID;?>_upvote_result" ><?=$loop->UP_VOTE;?></span></span> |
<a id="<?=$loop->VOTE_ID;?>_downvote" class="voteMe"><img src="<?= base_url();?>/img/images/down_vote.png"/></a><span id="<?=$loop->VOTE_ID;?>_downvote_result" ><?=$loop->DOWN_VOTE;?></span>
</div>
</li>
<?php }?>
</ul>
</div>
<?php }?>
</div>
</body>
</html>