您的位置首页百科知识 怎样用jquery得到select里面选中的值 Simone 发布于 2024-11-11 12:19:04 549 阅读 456var a = $('#select').val(); // 结果为 123var b = $('#select option:selected').val(); // 结果为 123var d = $('#select option:selected').attr('value'); // 结果为 123var c = $('#select option:selected').text(); // 结果为 456 看你想用哪种方式,想获取哪个值