1
有誰知道爲什麼選中的複選框的值未被回顯?單選按鈕不通過AJAX傳遞值
Javascript代碼:
<script src="jquery.min.js" type="text/javascript"></script>
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.form.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
<!--
// wait for the DOM to be loaded
$(document).ready(function()
{
// bind 'vgsForm' and provide a simple callback function
$('#vgsForm').ajaxForm(function()
{
$('#Suggestion').load('process_answers.php');
});
});
HTML表單
<div id="Questions">
<form id="vgsForm" action="process_answers.php" method="get" >
<div id="Q1">
<label><input type="radio" name="q1option" value="Less than 16" />Less than 16</label><br />
<label><input type="radio" name="q1option" value="16 or more" />16 or more</label>
</div>
process_answers.php
echo('$_GET: '.print_r($_GET, true));
//Get Question 1
if (isset($_GET['q1option']))
{
$q1option = $_GET['q1option'];
}
else
{
$q1option = NULL;
}
echo("Selected: ".$q1option);
這是呼應:
$ _GET:陣列()選擇:
任何幫助表示讚賞
丹尼爾
附:這是我得到JavaScript代碼的地方http://malsup.com/jquery/form/
我需要任何額外的JavaScript代碼來使它工作嗎?