我有一个 HTML/PHP 文件“index.php”,我使用 jquery 和 php 从 index.php 中第一个选择中选择的值生成和填充第二个选择。生成的选择的值使用 jquery 填充输入字段。我如何将这些 php 生成的值与其他输入一起发布并立即在“index.php”中选择值
Diagram
index.php
//other input
<select name="resident_type" id="resident_type"/>
<option value="Resident">Resident</option>
<option value="Non-Resident">Non-Resident</option>
</select>
//jquery to get the selected value from select in index.php to pass func.php to query db
$('#resident_type').change(function(){
$.get("func.php", {
func: "resident_type",
drop_var: $('#resident_type').val()
.........
//more code
//included connetion.php
//func.php, the php generated select
if($_GET['func'] == "resident_type" && isset($_GET['func'])) {
drop_1($_GET['drop_var']);
}
function drop_1(){
--connection to the db
<select name="roomtype" id="roomtype"/>
//some sql populating the generated select
<option value="x">y</option>
<option value="y">y</option>
</select>
}