使用此插件http://info.wsisiz.edu.pl/~suszynsk/jQuery/demos/jquery-selectbox/
我有它的样式,我有一系列具有相同类名的下拉框:
我在
下面启动了插件if($.fn.selectbox){
$("select").selectbox();
}
使用jquery 1.8.1分钟
$(".songSelection_input").change(function(event) {
// i am able to get the value of the option selected in the dropdown
// but I am unable to fire this below
$(this).next('span').find('a.button').removeClass('grey');
});
如果我禁用了selectbox插件,灰色类会从按钮链接中删除。