$.fn.booNavigation = function() {
init.apply(this, arguments);
return this;
};
function init(opts) {
$(config.dropdown).hide();
var options = $.extend({}, defaults, opts);
this.data(options);
this.each(function(i, e) {
var $e = $(e);
$e.find(config.item).each(function(index, element) {
var $el = $(element);
$el.data('height', $el.find(config.dropdown).height());
$el.data('id', index);
});
menuSlide($e, options);
});
}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
那么多句代码是你一句不懂还是哪一句不懂?