我很难做到这一点,我正在使用 codeigniter php 框架,基本上我有 3 个选择菜单,它的值来自数据库,例如:
<?php
$this->data[selOne] = $this->model->selectOne(); //the id of this one must send
$this->data[selTwo] = $this->model->selectTwo(); //<-to here and the id of 2nd select
$this->data[selThree] = $this->model->selectThree(); //must send to here <-
$this->load->view->('controller/index.php', $this->data);
?>
在我看来
<select>
<?php foreach($selOne as $one){?>
<option><?php echo $one->label;?></option>
<?php }?>
</select>
<select>
<?php foreach($selTwo as $one){?>
<option><?php echo $one->label;?></option>
<?php }?>
</select>
<select>
<?php foreach($selThree as $one){?>
<option><?php echo $one->label;?></option>
<?php }?>
</select>
我想实现的是
*当我选择第一个选择菜单时它将其值传递给第二个菜单而不刷新页面。
* 与第二个选择菜单相同,它将其值传递给第三个选择菜单。
例如
在第一个选择菜单中,我选择“亚洲”
第二个选择菜单获取值亚洲,因此它显示亚洲的国家,我也单击其国家之一
第三个选择它返回在第二个选择菜单中选择的国家的城市
sql部分没问题我只需要知道如何在不刷新页面的情况下传递它的值。
谁能帮我实现这一点,请放过我。