如何使用jQuery从下拉列表中获取未选中的项目?
问题描述:
如何使用jQuery从下拉列表中获取未选择的项目
How can i get the unselected items from dropdown using jQuery
答
$('select#xyz option:not(:selected)');
或
$('#mySelect option').not(':selected');