0
jQuery.ajaxFileUpload({
            url: '<?php echo base_url(); ?>profile_pic/prof_photo_upload',
            secureuri: true,
            fileElementId: 'photoimg',
            dataType: 'html',
            success: function(resp){
                $('.right-register-container-left-rows-fields').html(resp);
            }
        });
4

1 に答える 1

0

オブジェクトを ajaxFileUpload に渡します。さらにパラメーターを追加するには、オブジェクトに新しいプロパティを追加するだけです。次に例を示します。

jQuery.ajaxFileUpload({
    url: '<?php echo base_url(); ?>profile_pic/prof_photo_upload',
    type: "POST",
    secureuri: true,
    fileElementId: 'photoimg',
    dataType: 'html',
    data: {
        somedata: "XXX",
        moredata: "YYY"
    },
    success: function(resp) {
        $('.right-register-container-left-rows-fields').html(resp);
    }
});
于 2013-09-08T08:41:01.713 に答える