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

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

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

要么

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