我想實現Ajax jQuery表單提交。我粘貼在下面的代碼不起作用。我得到day
month
和year
簡單的Ajax表單提交錯誤
jQuery的阿賈克斯
<script>
$(document).ready(function() {
$('#cal_submit').click(function(event) {
if ($('select[name="day"]').val() == '') {
event.preventDefault();
alert('Please enter a day');
}
else {
event.preventDefault();
new_day = $('select[name="day"]').val();
new_month = $('select[name="month"]').val();
new_year = $('select[name="year"]').val();
$.get('function.php', { day: new_day, month: new_month, year:new_year});
$('select[name="day"]').val('');
$('select[name="month"]').val('');
$('select[name="year"]').val('');
}
});
});
</script>
在處理PHP所在的函數未定義的索引錯誤。
function calendar()
{
$j = mysql_real_escape_string($_GET['day']);
$F = ucwords(mysql_real_escape_string($_GET['month']));
$Y = mysql_real_escape_string($_GET['year']);
$date =" ".$F." ".$j.", ".$Y." ";
$query = "SELECT *
FROM calendar
WHERE event_day = '".$j."'
AND event_month = '".$F."'
AND event_year = '".$Y."'" ;
$run = mysql_query($query);
$norows = mysql_numrows($run);
if ($norows < 1){
echo "<div class=\"indexnoresult\">No TAP Event(s) for $date</div>" ;
} else {
while($row = mysql_fetch_array($run)) {
echo "<div class=\"indexnoresult\">Event(s) for $date<br>
Name : $row[event_name] <br>
Time : $row[event_time] <br>
Venue : $row[event_venue] <br>
</div>
" ;
}
} ?>
HTML表單
<form action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>" method="post" >
Pick Date To View Events
<select name="day">
<option value =""> </option>
<option value ="1">1</option>
<option value ="2">2</option>
</select>
Month
<select name="month">
<option value =""> </option>
<option value ="january">January</option>
<option value ="february"> february </option>
<option value ="march">March</option>
</select>
Year:
<select name="year">
<option value =""> </option>
<option value ="2005">2005</option>
<option value ="2006">2006</option>
</select>
<input type='submit' name='cal_submit' id='cal_submit'>
</form>
</div>
請在那裏我是我走錯了。
MySQL有'DATE'類型。 –
'$ .get('function.php',{day:new_day,month:new_month,year:new_year});'new_day,new_month,new_year實際上在代碼中的任何位置分配了一個值嗎? –
什麼是'new_day'' new_month'和'new_year'? – Deepak