我正在使用Chosen jQuery插件,我已经成功安装了它.
现在我想获取选定或取消选择的项目,这里是文档:
现在我想获取选定或取消选择的项目,这里是文档:
http://harvesthq.github.io/chosen/options.html
它说在更改触发器上,它发送select和取消选择作为参数,我怎么能访问那些?
例如:
$('#days').on('change',function(evt,params) { // alert selected val if the users selected new item // alert deselected val if the users deselected item }
谢谢