甜蜜警报2:将inputOptions设置为javascript对象

时间:2018-11-21 23:08:06

标签: javascript jquery html json sweetalert2

我有Swal2模态,我想将文本框值设置为对象的javascript数组。

我想遍历数组(obj)并将array的值写入文本框。最简单的方法是什么?

任何帮助将不胜感激,谢谢! :)

    $.ajax({

        type: 'get',
        url: 'index.php?op=GetEnquiryLog',
        dataType: 'json',
        success: function(data) {
            var jsonString = JSON.stringify(data);
            var obj = JSON.parse(jsonString);

                swal({
                    title: 'Sales Enquiry Log',
                    type: 'info',
                    width: 900,
                    input: 'textarea',
                    inputAttributes: {
                        autocapitalize: 'off',
                        disabled: true
                    },
                    inputValue: 'Reason: '+obj[i].Reason+' '+"Type: "+obj[i].Type,
                    confirmButtonText: 'Back',
                    allowOutsideClick: false
                })

        }
    });

0 个答案:

没有答案