如何在动力学类中执行点击事件

时间:2018-07-04 11:21:55

标签: javascript jquery

这里我在jQuery中有父级和子级概念,

代码

$(".account-report-group-summary-account-group").trigger("click");

页面加载时,仅存在五个名为“ account-report-group-summary-account-group”的类

当我触发click event时,然后创建具有相同类名(作为子节点)的新元素

在这里,我想触发具有相同类的新创建元素的点击事件。

现在它当前可用于父元素。

代码

$(document).on("click", "#account-report-group-summary-detailed-view", function (e) {

    e.preventDefault();

    if ($(this).find("span").html() == "Detailed View")
    {
        $(this).find("span").html("Condensed View");
    } else
    {
        $(this).find("span").html("Detailed View");
    }

    $(".account-report-group-summary-account-group").trigger("click");

    console.log($(".account-report-group-summary-account-group").length);

});

0 个答案:

没有答案