本篇文章和大家了解一下jquery+php后台实现省市区联动功能示例。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。
博乐网站建设公司成都创新互联公司,博乐网站设计制作,有大型网站制作公司丰富经验。已为博乐千余家提供企业网站建设服务。企业网站搭建\外贸网站制作要多少钱,请找那个售后服务好的博乐做网站的公司定做!
jquery是一个简洁而快速的JavaScript库,它具有独特的链式语法和短小清晰的多功能接口、高效灵活的css选择器,并且可对CSS选择器进行扩展、拥有便捷的插件扩展机制和丰富的插件,是继Prototype之后又一个优秀的JavaScript代码库,能够用于简化事件处理、HTML文档遍历、Ajax交互和动画,以便快速开发网站。
具体如下:
JS:
$("#from_prov_id,#from_city_id").change(function () { var current_prov_id = $(this).val(); var _this = this; $.ajax({ type:'get', url:"{:url('getarea')}?id="+current_prov_id, success:function (data) { var data = JSON.parse(data); if (data.list2==''){ $('#from_area_id option').remove(); $("#from_area_id").append( ''); $.each(data.list1,function (index,item) { $("#from_area_id").append( ''); }); }else{ $("#from_city_id option").remove(); $('#from_area_id option').remove(); $("#from_city_id").append( ''); $.each(data.list1,function (index,item) { $("#from_city_id").append( ''); }); $("#from_area_id").append( ''); $.each(data.list2,function (index,item) { $("#from_area_id").append( ''); }); } } }) });
html:
php:
public function area(){ $area = new Area(); $id = input('id'); $list = $area->getList(['pid'=>$id]); $list2 = $area->getList(['pid'=>$list[0]['id']]); return json_encode(['list1'=>$list,'list2'=>$list2]); }
以上就是jquery+php后台实现省市区联动功能示例的简略介绍,当然详细使用上面的不同还得要大家自己使用过才领会。如果想了解更多,欢迎关注创新互联行业资讯频道哦!