0

我有一个 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>
}
4

1 回答 1

0

当您的 jquery 脚本开始在您的页面上运行时,PHP 早已不复存在并被遗忘,并且不再提供任何数据。因此,您要么必须使用数据预先填充所有元素,要么使用 AJAX(可能非常慢)在用户浏览页面并使用选择框时动态加载数据。

如果您的数据集很小,我建议您在页面上的某处预填充数据,而不是在控件中,而是在脚本中的某处,以便 jquery 可以使用这些数据为您的选择框填充正确的值。

于 2012-11-24T14:56:19.080 回答