【问题标题】:Jquery - on click not working on dynamically loaded elementJquery - 单击时不适用于动态加载的元素
【发布时间】:2018-10-01 10:25:27
【问题描述】:

我有一个通过 JS 加载到 DOM 中的 cookie 横幅,我正在尝试向该横幅上的关闭按钮添加一个点击事件。

jQuery(document).ready(function() {

    jQuery( 'body' ).on( 'click', '.ui-dialog-titlebar-close', function() {
        console.log('click');
    });

});

谁能告诉我如何让这个点击功能注册?我不明白为什么上面的代码不起作用。当我将选择器更改为在第一个实例中加载到页面上的元素并且它正常工作时,它工作正常,只是不喜欢动态加载的元素?

编辑:

这是完整的代码:

function setBannerCookie(){
   if(typeof tealiumBanner.setBannerCookie === 'function'){
       tealiumBanner.setBannerCookie();
   }
}

function setBannerCookie() {

    jQuery.cookie ("mmmBanner", "accepted", {expires:365, path:"/"});
    jQuery("#cookieBox").animate({height:"toggle"}, 500);

    var optOutMultiCookie = jQuery.cookie("OPTOUTMULTI");

    var cookieArray = optOutMultiCookie.split('|');

    for(var i=0;i<cookieArray.length;i++){
        var itemArray = cookieArray[i].split(':');
        newItem = itemArray[0] + ":0";
        cookieArray[i] = newItem;
    }

    cd = new Date();
    cd.setDate(cd.getDate() + 90);
    document.cookie = 'OPTOUTMULTI=' + cookieArray.join("|") + ';path=/;domain=' + utag.cfg.domain + ';expires=' + cd.toGMTString() + ";";
}

jQuery(document).ready(function() {

    if (jQuery.cookie("mmmBanner") == undefined) {
        jQuery.cookie ("mmmBanner", "waiting", {expires:365, path:"/"});
    }

    jQuery("#mmmCorpCookie").click(function (e) {
        e.preventDefault();
        if (typeof __tealiumMo2Div == 'undefined') {__tealiumMo2Div = document.createElement('SCRIPT');__tealiumMo2Div.type = 'text/javascript';__tealiumMo2Div.src = '//tags.tiqcdn.com/utag/3m/offp-it-it/prod/utag.tagsOptOut.js?cb='+Math.random();document.getElementsByTagName('head')[0].appendChild(__tealiumMo2Div);}else{__tealium.load();}
    });
    if (jQuery.cookie("mmmBanner") == undefined) {

        jQuery.cookie ("mmmBanner", "waiting", {expires:365, path:"/"});
    }
    if (jQuery.cookie("mmmBanner") === "waiting") {
        (function () {if (typeof __tealiumMo2Div == 'undefined') {__tealiumMo2Div = document.createElement('SCRIPT');__tealiumMo2Div.type = 'text/javascript';__tealiumMo2Div.src = '//tags.tiqcdn.com/utag/3m/offp-it-it/prod/utag.tagsOptOut.js?_cb='+Math.random();document.getElementsByTagName('head')[0].appendChild(__tealiumMo2Div);}else{__tealium.load();}})();
    }

});



/*!
 * jQuery Cookie Plugin v1.4.1
 * https://github.com/carhartl/jquery-cookie
 *
 * Copyright 2013 Klaus Hartl
 * Released under the MIT license
 */
(function (factory) {
    if (typeof define === 'function' && define.amd) {
        // AMD
        define(['jquery'], factory);
    } else if (typeof exports === 'object') {
        // CommonJS
        factory(require('jquery'));
    } else {
        // Browser globals
        factory(jQuery);
    }
}(function ($) {

    var pluses = /\+/g;

    function encode(s) {
        return config.raw ? s : encodeURIComponent(s);
    }

    function decode(s) {
        return config.raw ? s : decodeURIComponent(s);
    }

    function stringifyCookieValue(value) {
        return encode(config.json ? JSON.stringify(value) : String(value));
    }

    function parseCookieValue(s) {
        if (s.indexOf('"') === 0) {
            // This is a quoted cookie as according to RFC2068, unescape...
            s = s.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, '\\');
        }

        try {
            // Replace server-side written pluses with spaces.
            // If we can't decode the cookie, ignore it, it's unusable.
            // If we can't parse the cookie, ignore it, it's unusable.
            s = decodeURIComponent(s.replace(pluses, ' '));
            return config.json ? JSON.parse(s) : s;
        } catch(e) {}
    }

    function read(s, converter) {
        var value = config.raw ? s : parseCookieValue(s);
        return $.isFunction(converter) ? converter(value) : value;
    }

    var config = $.cookie = function (key, value, options) {

        // Write

        if (value !== undefined && !$.isFunction(value)) {
            options = $.extend({}, config.defaults, options);

            if (typeof options.expires === 'number') {
                var days = options.expires, t = options.expires = new Date();
                t.setTime(+t + days * 864e+5);
            }

            return (document.cookie = [
                encode(key), '=', stringifyCookieValue(value),
                options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
                options.path    ? '; path=' + options.path : '',
                options.domain  ? '; domain=' + options.domain : '',
                options.secure  ? '; secure' : ''
            ].join(''));
        }

        // Read

        var result = key ? undefined : {};

        // To prevent the for loop in the first place assign an empty array
        // in case there are no cookies at all. Also prevents odd result when
        // calling $.cookie().
        var cookies = document.cookie ? document.cookie.split('; ') : [];

        for (var i = 0, l = cookies.length; i < l; i++) {
            var parts = cookies[i].split('=');
            var name = decode(parts.shift());
            var cookie = parts.join('=');

            if (key && key === name) {
                // If second argument (value) is a function it's a converter...
                result = read(cookie, value);
                break;
            }

            // Prevent storing a cookie that we couldn't decode.
            if (!key && (cookie = read(cookie)) !== undefined) {
                result[name] = cookie;
            }
        }

        return result;
    };

    config.defaults = {};

    $.removeCookie = function (key, options) {
        if ($.cookie(key) === undefined) {
            return false;
        }

        // Must not alter options, thus extending a fresh object...
        $.cookie(key, '', $.extend({}, options, { expires: -1 }));
        return !$.cookie(key);
    };

}));

jQuery(document).ready(function() {
    jQuery( 'body' ).on( 'click', '.ui-dialog-titlebar-close', function() {
        console.log('click');
    });
});

【问题讨论】:

  • 您需要在将动态创建的控件附加到页面后立即注册此事件。
  • 在注册click事件之前确保.ui-dialog-titlebar-close被添加到你的页面
  • @ArunKumar 不,使用.on('click') 将适用于动态添加的元素
  • 正文应该在文档就绪事件处理程序触发之前渲染,因此将事件处理程序附加到正文应该没问题。这里还有其他东西在起作用。您能否发布 HTML,以便我们可以交叉检查拼写、类属性等内容。
  • 请同时提供html。您的 javascript 代码工作正常。您可能有无效的 html 或使用不同的类。

标签: javascript jquery function onclick


【解决方案1】:

考虑到您正在使用 javascript 加载横幅:

tags.tiqcdn.com/utag/3m/offp-it-it/prod/utag.tagsOptOut.js

那么你必须在javascript已经加载并执行后附加onclick方法,你可以使用脚本html标签的onloaded属性来做到这一点。

例如:

__tealiumMo2Div = document.createElement('SCRIPT');
__tealiumMo2Div.type = 'text/javascript';
__tealiumMo2Div.src = '//tags.tiqcdn.com/utag/3m/offp-it-it/prod/utag.tagsOptOut.js?_cb='+Math.random();
__tealiumMo2Div.onload = function()
{
      jQuery( 'body' ).on( 'click', '.ui-dialog-titlebar-close', function() {
        console.log('click');
    });
};

document.getElementsByTagName('head')[0].appendChild(__tealiumMo2Div);

【讨论】:

    【解决方案2】:

    从 Jquery(document).ready 不需要它,因为您的内容是在页面加载后动态加载的。

    改用following并将其放在&lt;/body&gt;之前

    jQuery(document).on( 'click', '.ui-dialog-titlebar-close', function() {
        console.log('click');
    });
    

    【讨论】:

    • 谢谢,但不幸的是,点击功能仍然无法触发。
    • jQuery('document') 应该是 jQuery(document)。但请注意仅将其用于测试目的。您想在最近的静态元素上进行事件委托。
    • @MarkBaijensthanx 指出错误,我已经更新了我的答案。希望这会奏效。
    • 谢谢,删除了反对票。但是我不完全同意将其留在 ready 函数之外,因为通常(在生产中)您不想使用 document 进行委派。
    【解决方案3】:

    我会使用 setTimeout 来临时化 onclick 事件:

    jQuery(document).ready(function() {
        setTimeout(function() {
           $('body').on( 'click', '.ui-dialog-titlebar-close', function() {
               console.log('click');
           });
        }, 10);
    });
    

    【讨论】:

    • 在我看来这是一个非常非常糟糕的做法,你永远不知道加载需要多少时间,在这种情况下是横幅。我们应该始终避免设置超时,除非我们没有任何其他解决方案。
    猜你喜欢
    • 1970-01-01
    • 2015-03-14
    • 1970-01-01
    • 2012-04-19
    • 2021-07-09
    • 2012-01-12
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多