php jquery 多文件上传演示
xml/html code
upload
《script》 $(document).ready(function() { var settings = { url: “upload.php”, method: “post”, allowedtypes:”jpg,png,gif,doc,pdf,zip”, filename: “myfile”, multiple: true, onsuccess:function(files,data,xhr) { $(“#status”).html(“upload is success”); }, onerror: function(files,status,errmsg) { $(“#status”).html(“upload is failed”); } } $(“#mulitplefileuploader”).uploadfile(settings); }); 《script》
upload.php
php code
原文地址:http://www.freejs.net/article_biaodan_116.html
http://www.bkjia.com/phpjc/621610.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/621610.htmltecharticlephp jquery 多文件上传 演示 xml/html code upload script $(document).ready(function() { var settings = { url: “upload.php”, method: “post”, allowedtypes:”jpg,png,gif,doc,pdf,z…