}); } else { layer.alert(result.msg, {time: 1500}); } } }) }); //预约设计师城市交互 $('[name="province21"]').change(function () { $('[name="city21"]').html(''); var id = $(this).val(); $.ajax({ type: 'get', url: '/public/getArea/', data: {area: id}, dataType: 'json', success: function (result) { var html = ''; for (var i in result) { html += '' } $('[name="city21"]').append(html); } }); });