我需要当我的div为空时,如果不删除,请运行appendChild代码。我认为我的逻辑不正确

$(window).on("load", function() {
    if ('#leftmenu:empty') {
        $('#leftmenu:empty').remove();
    } else {
        document.querySelector('.iframe-output').appendChild(
        document.querySelector('.paddingbox iframe')
    }
});

最佳答案

$(window).on("load", function() {
        if ($('#leftmenu').html().length == 0) {
            $('#leftmenu').remove();
        } else {
            //do whatever

        }
    });

10-08 08:05