下拉框按钮  select 的change
$(“input[type=radio][name=school][value=8]“).attr(“checked”,’checked’);  使单选框选中

$('#Select').change(function(){
alert($(this).children('option:selected').val()); 下拉框选中的对象获取其值
alert($(this).children('option:selected').attr("id")); 下拉框选中的对象获取其ID