程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> swfupload 多文件上傳實現代碼

swfupload 多文件上傳實現代碼

編輯:關於PHP編程

var swfu;
window.onload = function() {
var settings = {
flash_url : "js/swfupload_f9.swf", //flash地址
upload_url: "upload.php", //上傳文件處理地址
post_params: {"PHPSESSID" : "“},
file_size_limit : “1000″, //大小限制 默認單位為kb
file_types : “*.jpg;*.gif;*.png;*.swf”,//文件類型
file_types_description : “Web Image Files”,//文件類型描述
file_upload_limit : 100,//上傳文件限制
file_queue_limit : 0,
custom_settings : {
progressTarget : “fsUploadProgress”,
cancelButtonId : “btnCancel”
},
debug: false,

file_queued_handler : fileQueued,
file_queue_error_handler : fileQueueError,
file_dialog_complete_handler : fileDialogComplete,
upload_start_handler : uploadStart,
upload_progress_handler : uploadProgress,
upload_error_handler : uploadError,
upload_success_handler : uploadSuccess,
upload_complete_handler : uploadComplete,
queue_complete_handler : queueComplete
};

swfu = new SWFUpload(settings);
};

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved