我有这个作为下一个和后退按钮

这是下一个按钮:

$(document).on('click', '#next_form', function () {
        emailAdress = $("#email").val();
        $(".column_1").flip({
        direction: 'rl',
        });
        $(".column_2").flip({
        direction: 'lr',
        });
});


返回键:
然后,我可以还原翻转并再次插入值:

$(document).on('click', '#back_form', function () {
    $(".column_1").revertFlip();
    $(".column_2").revertFlip();
    $("#email").val(emailAdress);
    console.log(emailAdress);
});


但是当我在控制台日志中输入字段未显示值时,它似乎运行完美,但确实显示了...为什么有任何想法?

最佳答案

您需要从var Fname, emailAdress, phoneNumber;中取出document.ready

08-16 11:32