<html>
<select id="degree_id" onchange=geneCourse(this.value);>
<option value="1">BE</option>
<option value="2">MBA</option>
</select>
<select id="course_id">
<option value="10">A</option>
<option value="20">none</option>
</select>
</html>
<script>
function geneCourse(degree){
var degree = $('#degree_id option:selected').text();
if(degree == 'MBA')
{
$("#course_id option:contains('none')").prop("selected", true);
}
}
</script>
上記のコードを試してみましたが、うまくいきません :( MBAが選択されている場合、デフォルトでは、2番目のドロップダウンは「なし」になっているはずです..... このために....あなたの助けは大歓迎です。
Passioncoder さん、よろしくお願いします。