Dom未升级

时间:2019-07-15 07:21:03

标签: jquery dom laravel-5.4 materialize

我的带有警报dom的代码已升级并且可以正常工作。如果我删除功能dom中的警报未升级。为什么?您能帮忙吗?

代码:

function callAjax2(row,spId) {
    componentHandler.upgradeDom();
    table2.removeClass("childtable_hidden");

    var child = row.child(table2);
    var table_td =$(table2).closest('tr td');

    //table_td.attr('id', "coucou");
    table_td.addClass("nestedtable");
    table2.addClass("secondlevel");
    componentHandler.upgradeDom();
    alert("HI");          //if i keep alert working if i remove its not working
    child.show();
}

我不想在该功能中放置警报

0 个答案:

没有答案