Ajax drop down for Country State & City in Codeigniter?

前端 未结 3 1074
温柔的废话
温柔的废话 2021-01-29 14:56

I am making country state and city drop down with the help of ajax in our codeigniter frame work .

The structure of database given bellow.

Country

3条回答
  •  攒了一身酷
    2021-01-29 15:43

    create a javascript variable

    var base_url = "";
    

    in your javascript code conecat it

    url: base_url+"home/get_cities/"+country_id, 
    

    use firefox and firebug to debug your ajax code

提交回复
热议问题