下拉框按钮  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
 

相关文章:

  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-03
  • 2022-12-23
  • 2022-12-23
  • 2021-08-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2021-12-07
  • 2022-12-23
相关资源
相似解决方案