javascript - 使用 jquery .on() 方法作用于同一元素(选项标签)的两个脚本之间的冲突

标签 javascript jquery jquery-isotope

我有冲突。我编写了一个简单的脚本,它根据类名过滤 div。它有效,但当我添加第三方脚本时无效。这里的相关行是 .on 函数。第三方代码禁止我的代码运行。 html 代码中的两个目标选项标记。

我尝试删除代码中的“return false”,但没有成功。尝试将我的代码放在顶部......什么也没有。我考虑过使用event.stopPropagation()。我读到过。这适用于我的情况吗?我该如何整合它?

我想提供一个功能性的jsfiddle,但不幸的是我没有接受过使用帽子网站的训练,因为我更习惯于notepad++和dreamweaver。

这是我的自定义脚本:

jQuery(document).ready(function (e) {
    var t = e("#filter-container");
    t.imagesLoaded(function () {
        t.isotope({
            itemSelector: "figure",
            filter: "*",
            resizable: false,
            animationEngine: "jquery"
        })
    });
    $("select").on("change", function () {
        var select = $(this);
        var selectedOption = select.find("option:selected");
        var r = selectedOption.attr("data-filter");
        t.isotope({
            filter: r
        });
        return false
    });
    e(window).resize(function () {
        var n = e(window).width();
        t.isotope("reLayout")
    }).trigger("resize")
});

还有第三方脚本:

(function ($, window, undefined) {   
    'use strict';

    $.DropDown = function (options, element) {
        this.$el = $(element);
        this._init(options);
    };

    // the options
    $.DropDown.defaults = {
        speed: 300,
        easing: 'ease',
        gutter: 0,
        // initial stack effect
        stack: true,
        // delay between each option animation
        delay: 0,
        // random angle and positions for the options
        random: false,
        // rotated [right||left||false] : the options will be rotated to thr right side or left side.
        // make sure to tune the transform origin in the stylesheet
        rotated: false,
        // effect to slide in the options. value is the margin to start with
        slidingIn: false,
        onOptionSelect: function (opt) {
            return false;
        }
    };

    $.DropDown.prototype = {

        _init: function (options) {

            // options
            this.options = $.extend(true, {}, $.DropDown.defaults, options);
            this._layout();
            this._initEvents();

        },
        _layout: function () {

            var self = this;
            this.minZIndex = 1000;
            var value = this._transformSelect();
            this.opts = this.listopts.children('li');
            this.optsCount = this.opts.length;
            this.size = {
                width: this.dd.width(),
                height: this.dd.height()
            };

            var elName = this.$el.attr('name'),
                elId = this.$el.attr('id'),
                inputName = elName !== undefined ? elName : elId !== undefined ? elId : 'cd-dropdown-' + (new Date()).getTime();

            this.inputEl = $('<input type="hidden" name="' + inputName + '" value="' + value + '"></input>').insertAfter(this.selectlabel);

            this.selectlabel.css('z-index', this.minZIndex + this.optsCount);
            this._positionOpts();
            if (Modernizr.csstransitions) {
                setTimeout(function () {
                    self.opts.css('transition', 'all ' + self.options.speed + 'ms ' + self.options.easing);
                }, 25);
            }

        },
        _transformSelect: function () {

            var optshtml = '',
                selectlabel = '',
                value = -1;
            this.$el.children('option').each(function () {

                var $this = $(this),
                    val = isNaN($this.attr('value')) ? $this.attr('value') : Number($this.attr('value')),
                    classes = $this.attr('class'),
                    selected = $this.attr('selected'),
                    label = $this.text();

                if (val !== -1) {
                    optshtml += classes !== undefined ?
                        '<li data-value="' + val + '"><span class="' + classes + '">' + label + '</span></li>' :
                        '<li data-value="' + val + '"><span>' + label + '</span></li>';
                }

                if (selected) {
                    selectlabel = label;
                    value = val;
                }

            });

            this.listopts = $('<ul/>').append(optshtml);
            this.selectlabel = $('<span/>').append(selectlabel);
            this.dd = $('<div class="cd-dropdown"/>').append(this.selectlabel, this.listopts).insertAfter(this.$el);
            this.$el.remove();

            return value;

        },
        _positionOpts: function (anim) {

            var self = this;

            this.listopts.css('height', 'auto');
            this.opts.each(function (i) {
                $(this).css({
                    zIndex: self.minZIndex + self.optsCount - 1 - i,
                    top: self.options.slidingIn ? (i + 1) * (self.size.height + self.options.gutter) : 0,
                    left: 0,
                    marginLeft: self.options.slidingIn ? i % 2 === 0 ? self.options.slidingIn : -self.options.slidingIn : 0,
                    opacity: self.options.slidingIn ? 0 : 1,
                    transform: 'none'
                });
            });

            if (!this.options.slidingIn) {
                this.opts.eq(this.optsCount - 1)
                    .css({
                    top: this.options.stack ? 9 : 0,
                    left: this.options.stack ? 4 : 0,
                    width: this.options.stack ? this.size.width - 8 : this.size.width,
                    transform: 'none'
                })
                    .end()
                    .eq(this.optsCount - 2)
                    .css({
                    top: this.options.stack ? 6 : 0,
                    left: this.options.stack ? 2 : 0,
                    width: this.options.stack ? this.size.width - 4 : this.size.width,
                    transform: 'none'
                })
                    .end()
                    .eq(this.optsCount - 3)
                    .css({
                    top: this.options.stack ? 3 : 0,
                    left: 0,
                    transform: 'none'
                });
            }

        },
        _initEvents: function () {

            var self = this;

            this.selectlabel.on('mousedown.dropdown', function (event) {
                self.opened ? self.close() : self.open();
                return false;

            });

            this.opts.on('click.dropdown', function () {
                if (self.opened) {
                    var opt = $(this);
                    self.options.onOptionSelect(opt);
                    self.inputEl.val(opt.data('value'));
                    self.selectlabel.html(opt.html());
                    self.close();
                }
            });

        },
        open: function () {
            var self = this;
            this.dd.toggleClass('cd-active');
            this.listopts.css('height', (this.optsCount + 1) * (this.size.height + this.options.gutter));
            this.opts.each(function (i) {

                $(this).css({
                    opacity: 1,
                    top: self.options.rotated ? self.size.height + self.options.gutter : (i + 1) * (self.size.height + self.options.gutter),
                    left: self.options.random ? Math.floor(Math.random() * 11 - 5) : 0,
                    width: self.size.width,
                    marginLeft: 0,
                    transform: self.options.random ?
                        'rotate(' + Math.floor(Math.random() * 11 - 5) + 'deg)' : self.options.rotated ? self.options.rotated === 'right' ?
                        'rotate(-' + (i * 5) + 'deg)' :
                        'rotate(' + (i * 5) + 'deg)' : 'none',
                    transitionDelay: self.options.delay && Modernizr.csstransitions ? self.options.slidingIn ? (i * self.options.delay) + 'ms' : ((self.optsCount - 1 - i) * self.options.delay) + 'ms' : 0
                });

            });
            this.opened = true;

        },
        close: function () {

            var self = this;
            this.dd.toggleClass('cd-active');
            if (this.options.delay && Modernizr.csstransitions) {
                this.opts.each(function (i) {
                    $(this).css({
                        'transition-delay': self.options.slidingIn ? ((self.optsCount - 1 - i) * self.options.delay) + 'ms' : (i * self.options.delay) + 'ms'
                    });
                });
            }
            this._positionOpts(true);
            this.opened = false;

        }

    }

    $.fn.dropdown = function (options) {
        var instance = $.data(this, 'dropdown');
        if (typeof options === 'string') {
            var args = Array.prototype.slice.call(arguments, 1);
            this.each(function () {
                instance[options].apply(instance, args);
            });
        } else {
            this.each(function () {
                instance ? instance._init() : instance = $.data(this, 'dropdown', new $.DropDown(options, this));
            });
        }
        return instance;
    };

})(jQuery, window);

这可能是什么?

希望有人能赐教。我目前正在尝试为我病重的弟弟创建一个网站。他一直想要一个音乐网站,所以我想我就为他创建一个。阻止我发布它的唯一因素是这两个脚本之间的冲突。

最佳答案

在评论中聊了很长时间之后......

第三方脚本是一个插件,用于对下拉列表(选择)应用效果。基本上,它将附加元素转换ul,并将每个选项作为li粘贴在那里。

在您的代码段中,您尝试通过检查选择了哪个选项来检索选定的,但这将不再起作用。 该插件将选定的保留在隐藏字段中。

我会将您的代码更改为如下所示:

$(function () {
    var t = $("#filter-container");

    t.imagesLoaded(function () {
        t.isotope({
            itemSelector: "figure",
            filter: "*",
            resizable: false,
            animationEngine: "jquery"
        });
    });        

    $(window).on('resize', function () {
        var n = $(this).width();

        t.isotope("reLayout");        
    }).trigger("resize");
});
<小时/>

然后在您的页面中查找以下代码并进行更改:

$(function () {
    $('#cd-dropdown').dropdown({
        gutter : 5,
        onOptionSelect: function (opt) {
            $("#filter-container").isotope({
                filter: opt.data('value')
            });
        }
    });
});
<小时/>

同位素过滤器适用于您在选择选项中设置的类,但随着插件摆脱它并替换使用ul,此数据现在丢失。

要使其正常工作,您需要稍微更改 select 标记:

<select id="cd-dropdown" class="cd-select">
    <option value="*" selected>Pick a Genre</option>
    <option value="*">All</option>
    <option value=".epic">Epic</option>
    <option value=".classic">Classic</option>
    <option value=".regional">Regional</option>
    <option value=".electronic">Electronic</option>
</select>

关于javascript - 使用 jquery .on() 方法作用于同一元素(选项标签)的两个脚本之间的冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26306967/

相关文章:

javascript - 在 Isotope.js 中加入多个复选框过滤器

jQuery/CSS : Fluid responsive isotope grid with square divs

javascript - 某些 Google map 标记未显示在 Internet Explorer 中,但显示在所有其他浏览器中

javascript - 跨域 XHR

javascript - Ajax 请求期间 Gon 变量未从 Rails Controller 传递到 js

javascript - 我的 javascript 正在工作,但是当我在它下面添加另一个 javascript 代码和另一个 jquery 插件时,它变得一团糟?

javascript - 淡入/淡出一系列div

javascript - 安排菜单项以填补空白

javascript - 如何从 Javascript 中的对象列表中获取键的值?

javascript - 动态触发 HTML5 缓存 list 文件?