select中选中option的方法

壤驷涛
2023-12-01
获取第一个option的值
$('#test option:first').val();

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

获取选中的值
$('#test').val();
$('#test option:selected').val();
 类似资料: