我正在尝试根据第一次选择中选择的输入将值推送到品种下拉列表中。我有所有需要的数据。我只是不知道如何将其推入选择中。数据由breed_data.dog、breed_data.cat等访问。所以最初我在 change 函数中做了一个 each 循环。我不知道从哪里开始,任何提示将不胜感激。
<form id="filter" class="filter" action="http://dev/petlist/public/site/index" accept-charset="utf-8" method="post">
<select name="petsDropDown" id="form_petsDropDown">
<option value="allPets">All Pets</option>
<option value="barnyard">Barnyard</option>
<option value="bird">Bird</option>
<option value="cat">Cats</option>
<option value="dog">Dogs</option>
<option value="horse">Horse</option>
<option value="pig">Pigs</option>
<option value="smallfurry">Smallfurry</option>
</select>
<select name="breedDropDown" id="form_breedDropDown">
<option value="select_breed">Select Breed</option>
</select>
</form>
$(function(){
$('#form_petsDropDown').change(function(){
$('#form_breedDropDown').prop('disabled',($(this).val()=='allPets'));
$(breed_data).each(function() {
/*console.log(breed_data.dog);
console.log(breed_data.cat);
console.log(breed_data.smallfurry);
console.log(breed_data.bird);
console.log(breed_data.pig);
console.log(breed_data.horse);*/
});
}).change();
});