不断刷新我的页面,以便它可以在Firefox中获取一些动态输入

时间:2018-12-05 15:22:17

标签: firefox autofill

我正在使用Jquery将一些数据动态填充到表单中。数据可以在Chrome和Internet Explorer中很好地自动填充。问题是在Firefox上,我必须不断手动刷新页面,以便可以自动填充动态数据。不太确定这是否是Firefox错误,会导致代码在其他浏览器中正常工作。

请协助?

$.ajax({
        type: 'POST',
        url: 'jengaAPI',
        data: JSON.stringify(type),
        contentType: 'application/json',
        dataType: "json",
        success: function(response){
            //console.log(response);


            $('#amount').val(response.amount);
            $('#orderID').val(response.payment_reference);
            $('#orderReference').val(response.payment_reference);

            // console.log(amount.val());
            // console.log(orderRef.val());

            $('#eazzycheckout-payment-form').submit();
        },
        failure: function(errMsg) {
             //alert('error');
        }
    });

0 个答案:

没有答案