JS函数中的变量范围

时间:2019-04-21 13:00:05

标签: javascript jquery

我试图将const数组用于附加函数,但似乎无法在其中看到它。

我试图为函数nextAppend添加参数,但是没有用。

function displayCombat()
{
    $.ajax({
        url: "../php/players_fight.php",
        cache: false,

        success: function (json) {

            const battleLog = JSON.parse(json);

            for (i = 1; i < battleLog.length; i++)
            {
                $('#cWin').append('').delay(200).queue(function nextAppend()
                {
                    $(this).append(battleLog[i]);
                    nextAppend();
                });
            }
        }
    });

    return false;
}

结果是,日志div上没有任何内容。 “重复”解决方案不起作用...

0 个答案:

没有答案