我正在尝试使用 jquery 为我的网站创建投票赞成、反对票按钮。我所做的是创建一个表单并使用 $.post() 在外部 php 脚本中对其进行处理。我认为这将允许在后端安静地处理表单,但是当我单击按钮时,jquery 函数似乎不起作用,它只是在前端加载整个脚本。
感谢是否有人可以在这里提供一些帮助。谢谢。以下是我的脚本。
主 PHP 脚本
<div class="voting_class">
<?php
$user =& JFactory::getUser();
$ip = getenv('REMOTE_ADDR');
if($user->id == 185){
?>
<form method="post" action="../vote_plus.php">
<div class="form_element">
<label>user_id</label>
<input type="text" name="user_id" class="votetext" value="<?php echo $user->id;?>" />
</div>
<div class="element">
<label>ad_id</label>
<input type="text" name="ad_id" class="votetext" value="<?php echo $this->content->id;?>"/>
</div>
<div class="element">
<label>ip_address</label>
<input type="text" name="ip_address" class="votetext" value="<?php echo $ip;?>"/>
</div>
<div class="submit_element">
<input type="submit" class="button" id="submitadd" value="Recommend"/>
<div class="loading"></div>
</div>
<div class="submit_element">
<input type="submit" class="button" id="submitminus" value="Don't Recommend" />
<div class="loading"></div>
</div>
</form>
<p class="success_msg" style="display:none"></p>
<?php }?>
</div>
JAVASCRIPT脚本
<script type = "text/javascript">
$(document).ready(function() {
$('#submitadd').click(function(event) {
//Get the data from all the fields
var user_id = $('input[name=user_id]');
var ad_id = $('input[name=ad_id]');
var ip_address = $('input[name=ip_address]');
$.post('../vote_plus.php', { user: "user_id.val()", ad: "ad_id.val()", ip: "ip_address.val()" }, function () {
$('.success_msg').append("Vote Successfully Recorded").fadeIn();
});
event.preventDefault();
});
});
//if submit button is clicked
$('#submitminus').click(function(event) {
//Get the data from all the fields
var user_id = $('input[name=user_id]');
var ad_id = $('input[name=ad_id]');
var ip_address = $('input[name=ip_address]');
$.post('../vote_minus.php', { user: "user_id.val()", ad: "ad_id.val()", ip: "ip_address.val()" }, function () {
$('.success_msg').append("Vote Successfully Recorded").fadeIn();
});
event.preventDefault();
});
});
</script>
我不会发布外部脚本,因为我认为问题不在于外部 php 脚本,因为可以正确加载所有 mySQL 更新,并且可以正确显示任何信息。我的问题在于我无法让按钮在 jquery 中工作。