亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

County level display

Jquery code displayed at the county level:

<?php
$("#citys").change(function() {
    $.ajax({
        type: "get",
        url: "region_action.php", // type =2表示查詢市
        data: {"parent_id": $(this).val(), "type": "3"},
        dataType: "json",
        success: function(data) {
            $("#countys").html("<option value=''>請選擇縣</option>");
            $.each(data, function(i, item) {
                $("#countys").append("<option value='" + item.region_id + "'>" + item.region_name + "</option>");
            });
        }
    });
});

Select to complete the display of the selected address:

<?php
//顯示地址
$("#countys").change(function() {
    var value = $("#provinces").find("option:selected").text()
        + $("#citys").find("option:selected").text()
        + $("#countys").find("option:selected").text();
    // alert(value);
    $("#region").append("選擇的地址是:"+"<input value='" + value + "'>");
});

Show results:

微信圖片_20180310120236.png

Continuing Learning
||
<?php echo "省市縣三級聯(lián)動顯示";
submitReset Code