解决方案 »

  1.   

    不用插件,用jquery ajax 在下拉框动态获取省查询市,获取市查询区.....
    <span>所属区域:</span><em class="gray" id="area"></em> <span class="login_user_select" style="padding-left: 130px; width: 400px;" id="area_show" name="area_show"> <select name="area1" id="area1" level="2" style="width: 80px;float:left;margin-right:10px;">
    <option value="" selected="selected">请选择</option>
    <c:forEach items="${areas }" var="items" varStatus="status">
    <option value="${items.id }">${items.areaName }</option>
    </c:forEach>
    </select> <select name="area2" id="area2" style="display:none; width: 80px; float:left; margin-right:10px;" level="3">
    </select> <select name="area3" id="area3" style="display: none; width: 80px; float:left;" level="4">
    </select> <select name="area4" id="area3" style="display: none; width: 80px; float:left;" level="4">
    </select> </span>