0

我正在尝试使用 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 中工作。

4

2 回答 2

3

你的线

$.post('../vote_plus.php', { user: "user_id.val()", ad: "ad_id.val()", ip: "ip_address.val()" }, function(){

应该

$.post('../vote_plus.php', { user: user_id.val(), ad: ad_id.val(), ip: ip_address.val() }, function(){

这是您的代码的简化版本。

$(function () {
  $('#submitadd').click(function (event) {       
    $.post(
      '../vote_plus.php', { 
        user: $('input[name=user_id]').val(), 
        ad:   $('input[name=ad_id]').val(),
        ip:   $('input[name=ip_address]').val() 
      }, function () {
        $('.success_msg').append("Vote Successfully Recorded").fadeOut();
      }
    );
    event.preventDefault();
  });
});

一般提示:

  • 它不是 jQuery 脚本,而是 JavaScript。
  • 不要使用说明显而易见的注释,例如//if submit button is clicked. 他们没有增加任何价值。
  • 使用正确、一致的缩进。
  • 使用event.preventDefault();代替return false;
  • 您可以在 jQuery 中链接操作,例如.append().fadeOut(). 无需为此创建两行代码。
  • $(document).ready()可以安全地替换为$().
于 2012-05-21T07:46:56.317 回答
0

改用这个:

<script type = "text/javascript">
    $(document).ready(function() {

        //if submit button is clicked
        $('#submitadd').click(function() {       

            //Get the data from all the fields
            var user_id = $('input[name=user_id]').val();
            var ad_id = $('input[name=ad_id]').val();
            var ip_address = $('input[name=ip_address]').val();

            $.post('../vote_plus.php', { user : user_id, ad : ad_id, ip : ip_address }, function(){
            $('.success_msg').append("Vote Successfully Recorded");
                $('.success_msg').fadeOut();
        });        
            return false;
         });
    });     
    </script>
于 2012-05-21T07:51:29.770 回答