Upload
<script> <br><br>$(document).ready(function() <BR>{ <br><br>var settings = { <BR> url: "upload.<a style="color:#f60; text-decoration:underline;" title= "php"href="https://www.php.cn/zt/15714.html" target="_blank">php", <BR> method: "POST", <BR> allowedTypes:"jpg,png,gif,doc,pdf,zip", <BR> fileName: "myfile", <BR> multiple: true, <BR> onSuccess:function(files,data,xhr) <BR> { <BR> $("#status").html("<font color='green'>Upload is success"); <br><br> }, <BR> onError: function(files,status,errMsg) <BR> { <BR> $("#status").html("<font color='red'>Upload is Failed"); <BR> } <BR>} <BR>$("#mulitplefileuploader").uploadFile(settings); <br><br>}); <BR></script>