-1

我正在使用 codeigniter 中的 form_dropdown()。

我有表 countrystate(id, countryname, statename)

我填充了国家名称并填写了 form_dropdown('fd_country')。

现在我想根据选定的国名显示州名。请帮忙。

4

1 回答 1

3

就像我做的那样 http://help.webhostel.org/h14682223

控制器代码

public function index() {
        $this->load->database();
        $this->db->select('countryname');
        $this->db->group_by('countryname');
        $query = $this->db->get('country');

        foreach($query->result() as $item)
            $countries[$item->countryname] = $item->countryname;

        $data = array('department' => $countries);

        $this->load->helper('form');
        $this->load->view('welcome_message', $data);
}

public function get_subdepartment() {
    $this->load->database();
    $this->load->helper('form');
    $states = array();  
    if($this->input->post('dep_selected')) {
        $this->db->select('countrystate');
        $this->db->where(array('countryname' => $this->input->post('dep_selected')));
        $query = $this->db->get('country');

        foreach($query->result() as $item)
            $states[$item->countrystate] = $item->countrystate;
    }

    $output = form_dropdown('subdept', $states);
    echo $output;
}

模板部分

<script type="text/javascript">
function get_subdepartment() {
    var dep_selected = $('select[name=txtDept]').val();
    $.ajax({
        data: {
            dep_selected: dep_selected,
        },
        type: 'POST',
        url: '/welcome/get_subdepartment',
        success: function(data){
            console.log(data);
            $('.subdepartment').html(data);
        }
    })
}
</script>
<div id="container">
<h1>Welcome to CodeIgniter</h1>
<div id="body">
<? echo form_open("addEmployee"); $newEmp = array('name' => 'newEmployee', 'id' => 'newEmployee', 'value' => set_value('ne')); ?>
    <div for='newEmp'><input type="text" name="txtEmpName" id="txtEmpName" maxlength="25" /></div> 
    <div for='newEmp'>
        <? echo form_dropdown($name = 'txtDept',$Options = $department, array($this->input->post('txtDept')),'onChange="get_subdepartment()"'); ?>
    </div>
    <div for='newEmp' class="subdepartment"></div>
<? echo form_submit('do_submit', 'Submit'); ?>
<? echo form_close(); ?>
</div>

于 2013-02-04T09:41:15.430 回答