JQuery获取select下拉框的值

  1. 获取第一个option的值
    $('#test option:first').val();

  2. 最后一个option的值
    $('#test option:last').val();

  3. 获取选中的值
    $('#test').val();
    $('#test option:selected').val();

你可能感兴趣的:(JQuery获取select下拉框的值)