Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用jquery selectbox plugin,我的问题是当我将鼠标移到可选择区域之外时,我想让下拉列表消失。
你知道这是否可能吗?
谢谢你!
在选择框代码的第 148 行是这样的:
.bind('blur.selectBox', function() { if( !control.hasClass('selectBox-active') ) return; control.removeClass('selectBox-active'); select.trigger('blur'); });
你必须添加一个mouseout
mouseout