我正在构建一个网站(在 php 中),它使用 uploadify 来允许用户上传投资组合图像。
我已经 uploadify 工作正常,但我只是想知道上传图片后在页面上显示上传图片的最佳方式。是否可以不刷新页面?
我在下面粘贴了我的上传代码:
<script>
<?php $timestamp = time();?>
var counter = 1;
$(function() {
$('#file_upload').uploadifive({
onUploadComplete: function(event, queueID, fileObj, reponse, data) {
//alert(counter);
counter = counter +1 ;
},
'buttonText' : 'Upload Images...',
'uploadLimit' : 12,
'uploadScript' : '/includes/uploadifive.php',
'checkScript' : '/includes/check-exists.php',
'auto' : true,
'method' : 'post',
formData : {
'page_id' : '<? echo $pageDetails->row['page_id'] ?>',
'counter' : counter,
'timestamp' : '<? echo $timestamp;?>',
'token' : '<? echo md5('unique_salt' . $timestamp);?>'
},
});
});
</script>
我不太确定如何从 uploadify 获取文件名