标签: jquery
如何使用jQuery从下拉列表中获取未选择的项目
答案 0 :(得分:19)
$('select#xyz option:not(:selected)');
或
$('#mySelect option').not(':selected');