省市区三级联动
下载地址:https://download.csdn.net/download/qzc2017/10879818
<select id="s_province" name="s_province"></select> <!--省-->
<select id="s_city" name="s_city" ></select> <!--市-->
<select id="s_county" name="s_county"></select> <!--县-->
<script class="resources library" src="${basePath}/static/js/area.js" type="text/javascript"></script>
<script type="text/javascript">_init_area();</script>
<script type="text/javascript">
var Gid = document.getElementById ;
// 若有草稿数据,赋值
if ($("#province").val() != null ){
var pro = $("#province").val();
var ci = $("#city").val();
var cou = $("#district").val();
InitArea(pro,ci,cou);
}
</script>
dateObj.province = $("#s_province").val();
dateObj.city = $("#s_city").val();
dateObj.county = $("#s_county").val();
还没有评论,来说两句吧...