5

我的网站上有一个民意调查,每个答案旁边都会显示单选按钮。当用户选择一个选项并提交时,我通过 ajax 运行一个 php 脚本以将值或选定的单选按钮插入表中。

我的 Ajax 正在运行,但当前每行插入 0 行,因此它没有从单选按钮中获取值。任何帮助,将不胜感激。

HTML:

<form id="poll_form" method="post" accept-charset="utf-8">  
    <input type="radio" name="poll_option" value="1" id="poll_option" /><label for='1'>&nbsp;Arts</label><br />
    <input type="radio" name="poll_option" value="2" id="poll_option" /><label for='2'>&nbsp;Film</label><br />
    <input type="radio" name="poll_option" value="3" id="poll_option" /><label for='3'>&nbsp;Games</label><br />
    <input type="radio" name="poll_option" value="4" id="poll_option" /><label for='4'>&nbsp;Music</label><br />
    <input type="radio" name="poll_option" value="5" id="poll_option" /><label for='5'>&nbsp;Sports</label><br />
    <input type="radio" name="poll_option" value="6" id="poll_option" /><label for='6'>&nbsp;Television</label><br />    
    <input type="submit" value="Vote &rarr;" id="submit_vote" class="poll_btn"/> 
</form> 

阿贾克斯:

    $("#submit_vote").click(function(e)
    { 
    var option=$('input[type="radio"]:checked').val();
    $optionID = "="+optionID;

    $.ajax({
        type: "POST",
        url: "ajax_submit_vote.php",
        data: {"optionID" : $optionID}
    });
});

PHP:(缩短版)

    if($_SERVER['REQUEST_METHOD'] == "POST"){

    //Get value from posted form
    $option = $_POST['poll_option'];

    //Insert into db
    $insert_vote = "INSERT into poll (userip,categoryid) VALUES ('$ip','$option')";

提前致谢!

4

3 回答 3

9
$("#submit_vote").click(function(e){ 

    $.ajax( {
      type: "POST",
      url: "ajax_submit_vote.php",
      data: $('#poll_form').serialize(),
      success: function( response ) {}
    });

});

然后,您应该可以在 PHP 脚本中访问 POST 变量“poll_option”。

于 2013-04-04T14:49:29.760 回答
2
var option = $('input[type="radio"]:checked').val();

$.ajax({
    type: "POST",
    url: "ajax_submit_vote.php",
    data: { poll_option : option }
});

因此,在您正在阅读的 PHP 中,$_POST['poll_option']您必须将poll_option其用作数据对象中的键。此外,该值的存储option方式$optionID与您尝试使用的方式不同。

是 Javascript 中变量名中的$一个有效字符,它本身并没有做任何特殊的事情,但是一些编码人员在任何 jQuery 对象的前缀上加上前缀,$因此他们可以浏览代码并轻松查看哪些变量已经具有 jQuery 包装器。

例如:

var $option = $('input[type="radio"]:checked'); // $option is the jQuery wrapped HTML element
var myValue = $option.val(); // we know $option already has the jQuery wrapper so no need to use the $(..) syntax.
于 2013-04-04T14:49:53.640 回答
0
  $optionID = "="+optionID;

我不太明白你在这里要做什么,在 javascript 中你没有使用$.

data: { optionID : option}

像这样使用它应该可以工作。你会在 PHP 中像这样检索它:

$option_value=$_POST['optionID'];
于 2013-04-04T14:43:40.437 回答