如何使用jQuery从下拉列表中获取未选中的项目?

问题描述:

如何使用jQuery从下拉列表中获取未选择的项目

How can i get the unselected items from dropdown using jQuery

$('select#xyz option:not(:selected)');

$('#mySelect option').not(':selected');