Bootstrap中的Dropdown下拉菜单更改为悬停(hover)
触发
在使⽤bootstrap制作后台时⽤到了响应式导航条,其中dropdown组件更是⽤的⽐较多,⽤的多需要点击的就多,dropdown默认⿏标左键单击才展开,如果使⽤⿏标放上去(hover)就展开则会省去点击时间,这样能提⾼效率。
原本的改造思路是:给dropdown元素绑定hover事件,hover上去的时候,执⾏该元素的click事件——即把hover同步为click,hover即为click。
但想到与其⾃⼰来改造,不如先在⽹上搜索搜索看看有没有现成的插件,果不其然就搜索到了,托管在github上的代码⽹址:查看keep上的美食食谱在哪里
在这⼉就直接把代码复制出来:
;(function($, window, undefined) {
// outside the scope of the jQuery plugin to
// keep track of all dropdowns
var $allDropdowns = $();
// if instantlyCloseOthers is true, then it will instantly
// shut other nav items when a new one is hovered over
$.fn.dropdownHover = function(options) {
// the element we really care about
// is the dropdown-toggle's parent
$allDropdowns = $allDropdowns.add(this.parent());
return this.each(function() {
var $this = $(this).parent(),
defaults = {
delay: 500,
instantlyCloseOthers: true
},
data = {
delay: $(this).data('delay'),
instantlyCloseOthers: $(this).data('close-others')
},
options = $.extend(true, {}, defaults, options, data),
timeout;
$this.hover(function() {
if(options.instantlyCloseOthers === true)
$veClass('open');
window.clearTimeout(timeout);
$(this).addClass('open');
}, function() {
timeout = window.setTimeout(function() {
$veClass('open');
}, options.delay);
});
});
};
$('[data-hover="dropdown"]').dropdownHover();
})(jQuery, this);
可以看到作者在插件前⾯加了个分号;,增加了插件的兼容性,因为可能上⼀个js代码没写;,如果在此不加分号则可能因为没换⾏导致js出错。
插件⽀持HTML元素data-*传参,也⽀持初始化传参。将此js代码放在bootstrap原本的js代码后⾯执⾏即可。
以上所述是⼩编给⼤家介绍的Bootstrap中的Dropdown下拉菜单更改为悬停(hover)触发,希望对⼤家有
所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!