0
 //this is saved in president.php
if ($result = $mysqli->query("SELECT * FROM candidate_info WHERE position= 'president'"))
                    {
     // display records if there are records to display
       if ($result->num_rows > 0)
                            {
          // display records in a table
           echo "<table border='1' cellpadding='10'>";

              // set table headers

          echo "<tr><th>Student ID</td><th>Course</th><th>Name</th><th></th></tr>";

  while ($row = $result->fetch_object())
             {
        // set up a row for each record
   echo "<tr>";
    echo "<td>" . $row->studid . "</td>";
    echo "<td>" . $row->course . "</td>";
    echo "<td>" . $row->fname . " ". $row->mname ." ". $row->lname ."</td>";
echo "<td><input type ='radio' name='radio'  value='". $row->studid ."'> </td>";
    echo "</tr>";
                               }


  echo "<td> <input type='button' name='button' value='select' onclick='". get_radio_value() ."'></td>";

    echo "</table>";
     }

     else {
        echo "No results to display!";
                            }
      }

//これは私のラジオの値を読み取って取得するための私のJavaScriptです

   function get_radio_value()
      {
      for (var i=0; i < document.orderform.radio.length; i++)
        {
          if (document.orderform.radio[i].checked)
            {
             var rad_val = document.orderform.radio[i].value;
             }
        }
       }

//ここでは、フォーム内の//テキストボックスの選択ボタンをクリックすると、選択したラジオの値が表示されます "/>

//しかし、ページをロードすると、エラーが発生しました

// like this Fatal error: Call to undefined function get_radio_value()

//これは私のvoting.phpのコードです

      <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab" tabindex="0">President</li>
      <li class="TabbedPanelsTab" tabindex="0">Secretary</li>
      </ul>
    <div class="TabbedPanelsContentGroup">
      <div class="TabbedPanelsContent"><p>&nbsp;</p>
   <p><?php require_once('candidate/president.php'); ?></p>
     <p>&nbsp;</p></div>

              <td width="292" valign="top">
    <form method="post" action="voting.php" >
         <table width="289" height="76" border="0" cellspacing="1">

          <tr>
            <td width="131" height="24" ><div align="right">President</div></td>
            <td width="151"><div align="left">
                <input type="text" name="president" id="radio_value"/>
            </div></td>
          </tr>


        </table>
   </form></td>
4

1 に答える 1

3

これを変える

echo "<td> <input type='button' name='button' value='select' onclick='". get_radio_value() ."'></td>";

これはphpのget_radio_value()関数を呼び出していますが、関数はjavascriptで記述されているため、以下のコードを使用してください。

echo "<td> <input type='button' name='button' value='select' onclick='get_radio_value()'></td>";

テキストボックスのラジオボタンの値を渡すため

<input type="text" name="president" value="WHAT CODE SHOULD I PUT HERE?" id="radio_value"/>

この行を変更します

var rad_val = document.orderform.radio[i].value;

return document.getElementById('radio_value').innerHTML = document.orderform.radio[i].value;
于 2013-01-14T04:11:40.423 に答える