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);
}
});
質問する
767 次
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 に答える