1

我正在用 PHP 做一些工作。我有两个 php 页面

索引.php

<html>
<head>
<script>
function getVote(int)
{
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("poll").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","poll-vote.php?vote="+int,true);
xmlhttp.send();
}
</script>
</head>
<body>
<h3>Is this correct? </h3>
<div id="poll">

<form>
Yes:
<input type="radio" name="vote" value="0">
<br>No:
<input type="radio" name="vote" value="1">
<input type="submit" value="Forward" onclick="getVote(value);"> 
</form>
</div>
</body>
</html>

单击提交按钮时,我需要获取所选单选按钮的值并将其传递给函数。

请帮我

4

6 回答 6

1

在你的onclick内联中调用一个函数......

 <input type="submit" value="Forward" onclick="getVote();"> //here

并在您的功能中检查无线电值..

var radiovalue= $('input[name="vote"]:checked').val()

尝试这个

JAVASCRIPT

function getVote()
{
 var radiovalue= $('input[name="vote"]:checked').val()
 if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp=new XMLHttpRequest();
  }
 else
 {// code for IE6, IE5
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
 }
 xmlhttp.onreadystatechange=function()
{

 if (xmlhttp.readyState==4 && xmlhttp.status==200)
  {
   document.getElementById("poll").innerHTML=xmlhttp.responseText;
  }
}
xmlhttp.open("GET","poll-vote.php?vote="+radiovalue,true);
xmlhttp.send();
}

HTML

<input type="submit" value="Forward" onclick="getVote();"> 
于 2013-01-08T12:15:20.027 回答
0

首先提供表单的动作和方法属性

<form action="index.php" method="post">

而不仅仅是你可以获得如下值:

$vote = $_POST['vote'];

我希望这就是你要找的。

于 2013-01-08T12:11:13.740 回答
0

尝试:

function getVote()
{
    var int=document.getElementById("vote").value;
    ....

编辑:注意到它是一个无线电输入......所以这不起作用。你需要类似的东西:

function getRadioCheckedValue(radio_name)
{
   var oRadio = document.forms[0].elements[radio_name];

   for(var i = 0; i < oRadio.length; i++)
   {
      if(oRadio[i].checked)
      {
         return oRadio[i].value;
      }
   }

   return '';
}

然后做:

function getVote()
{
    var int=getRadioCheckedValue(vote);
    ....
于 2013-01-08T12:11:25.093 回答
0

调用没有任何值的函数,然后读出函数之间的单选按钮,如下所示:

var rval = document.getElementsByName('vote');

for (var i = 0, length = rval.length; i < length; i++) {
    if (rval[i].checked) {
        alert(rval[i].value); // your value
    }
}
于 2013-01-08T12:19:53.620 回答
0

通过 jquery,您可以像这样获取所选收音机的值:

$('input[name=vote]:checked').val()
于 2013-01-08T12:17:39.177 回答
0

尝试改变这两个:

<form name="myForm"> 

onclick="getValue(document.myForm);"

然后是函数:

function getValue(form){
 var value = '';
 for (var i = 0; i < form.elements.length; i++ ) {
   if (form.elements[i].type == 'radio') {
         if(form.elements[i].checked == true) {
             value = form.elements[i].value;
        }
     }
   }

if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("poll").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","poll-vote.php?vote="+value,true);
xmlhttp.send();
}
于 2013-01-08T12:18:31.040 回答