jQuery支键盘控制和选项搜索的下拉列表框插件 A jQuery Plugin to Create Searchable Select List

Option groups

on Change event

Selected Index:

Selected Value:

			  
$('select').change(function(event){
    console.log(event.target.selectedIndex)
    console.log(event.target.value)
})