单击option

select标签中添加onchange("alert(this.options[this.selectedIndex].value)");属性,获取option的值,或者onchange("danji(this);");js代码:
        function danji(obj){
if((obj.options[obj.selectedIndex].value)=='1'){
$('#subjectId').show();
                        $('#gradeId').hide();
};
if((obj.options[obj.selectedIndex].value)=='2'){
$('#gradeId').show();
                        $('#subjectId').hide();
};
}

你可能感兴趣的:(option)