我想在php中使用javascript創建動態下拉列表。我能夠從下拉列表中獲取值並顯示第二個列表值。但是,該列表會顯示在下一頁上。我如何讓它顯示在同一頁面上?PHP動態下拉列表
這是窗體頁上:
$(document).ready(course_selectbox_change);
function course_selectbox_change() {
$('#course').change(update_section_list);
}
function update_section_list() {
var course=$('#course').attr('value');
$.get('hashtag.php?course='+course, generateSelect);
}
function show_sections(sections) {
$('#section').html(sections);
}
<?php
include "database.php";
$course= ($_REQUEST['course']);
$semester = ($_REQUEST['semester']);
if (isset($course)) {
$sections = retrieveSection($course);
}
if (!$sections) {
echo 'Select a course first';
} else {
echo '<select name="section"><option>'
. join('</option><option>', $sections)
. '</select>';
}
?>
您是否也可以發佈您在'$ .get'中調用的'generateSelect'函數 – DKSan