Cliquez sur la province pour afficher la ville correspondante
Nouveau code jquery :
$("#provinces").change(function() { $.ajax({ type: "get", url: "region_action.php", // type =2表示查询市 data: {"parent_id": $(this).val(), "type": "2"}, dataType: "json", success: function(data) { $("#citys").html(""); $.each(data, function(i, item) { $("#citys").append(""); }); } }); });
each() pour parcourir json jusqu'à l'objet.
Affichage de l'effet :