>  기사  >  백엔드 개발  >  wupload swfupload 여러 파일 업로드 구현 코드

wupload swfupload 여러 파일 업로드 구현 코드

WBOY
WBOY원래의
2016-07-29 08:38:391241검색

var swfu;
window.onload = function() {
var settings = {
flash_url : "js/swfupload_f9.swf", //플래시 주소
upload_url: "upload.php", / /파일 처리 주소 업로드
post_params: {"PHPSESSID" : ""},
file_size_limit : "1000", //크기 제한의 기본 단위는 kb
file_types : "*.jpg;* .gif; *.png;*.swf",//파일 형식
file_types_description: "웹 이미지 파일",//파일 형식 설명
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 : 진행률,
upload_error_handler : uploadError,
upload_success_handler : uploadSuccess,
upload_complete_handler : uploadComplete, 업로드
queue_ Complete_ 핸들러: queueComplete
};
swfu = 새 SWFUpload(설정)
};
위에서는 wupload 콘텐츠를 포함하여 wupload swfupload 다중 파일 업로드 구현 코드를 소개했습니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.