我不知道爲什麼,但我舊的uploadify測試版3的實施工作很好 但現在,當我選擇一個文件,我沒有看到它在文件列表中...我不能上傳它。 在這裏,你會發現我是如何寫的,如果有人可以幫助我。選擇文件不能與uploadify測試版3
<strong>Multiple File Upload</strong></p>
<input id="fileInput2" name="fileInput2" type="file" height="30" width="110">
<div id="fileInput2Queue" class="uploadifyQueue"></div>
<a href="javascript:$('#fileInput2').uploadifyUpload();"><img border="0" src="./content/galerie/img/upload_files.png"></a> <br />
<a href="javascript:$('#fileInput2').uploadifyClearQueue();"><img border="0" src="./content/galerie/img/clear_queue.png"></a>
<script type="text/javascript">
$("#fileInput2").uploadify({
'buttonText' :'Upload',
'swf' : '../extras/uploadify/beta3/uploadify.swf',
'uploader' : './content/galerie/upload/uploadify.php',
'cancelImg' : '../extras/uploadify/beta3/cancel.png',
'checkExisting' : '../extras/uploadify/beta3/uploadify-check-exists.php',
'queueID' : 'fileInput2Queue',
'auto' : false,
'multi' : true,
'simUploadLimit' : 1,
'removeCompleted' : true,
'postData' : {'cat': ''.$_POST['cat'].'','folder' : ''.$directory.''},
'sizeLimit' : 8000,
'onError' : function (event,ID,fileObj,errorObj) {
alert(errorObj.type + ' Error: ' + errorObj.info);
}
});
</script>
我用另一種方式,THX很多關於你的答案 – kangun 2011-06-18 16:49:23
@kangun - 如何發佈您的解決方案或標誌着固定您的問題的答案? – 2012-05-09 15:29:11