本文实例为大家分享了uploadify多图上传具体实现代码,可动态添加上传框,供大家参考,具体内容如下
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>UploadiFive Test</title> <script src="jquery2.js" type="text/javascript"></script> <script src="jquery.uploadify.min.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="uploadify.css"> <style type="text/css"> body { font: 13px Arial, Helvetica, Sans-serif; } </style> </head> <body> <h1>Uploadify Demo</h1> <div class='upload'> <form> <div class='form_file'> <div class='file'> <input id="file_upload1" name="file_upload" type="file" multiple="true"> </div> </div> </form> </div> <a href="javascript:;" class="clickUpload"> 点击 </a> <script type="text/javascript"> <?php $timestamp = time();?> $(function() { var i=2; $('.clickUpload').click(function(){ var html=''; html+='<div class="file"><input id="file_upload'+i+'" name="file_upload" type="file" multiple="true"></div>'; $('.form_file').append(html); $('#file_upload'+i).uploadify({ 'formData' : { 'timestamp' : '<?php echo $timestamp;?>', 'token' : '<?php echo md5('unique_salt' . $timestamp);?>' }, 'swf' : 'uploadify.swf', 'uploader' : 'uploadify.php', 'width' : '120', 'fileTypeExts': '*.gif; *.jpg; *.png', 'buttonText': '上传图片', 'removeCompleted' : false, 'multi' : true, //允许多图上传 //上传成功后执行 'onUploadSuccess': function (file, data, response) { $('#' + file.id).find('.data').html(' 上传完毕'); } }); i++; }) $('#file_upload1').uploadify({ 'formData' : { 'timestamp' : '<?php echo $timestamp;?>', 'token' : '<?php echo md5('unique_salt' . $timestamp);?>' }, 'swf' : 'uploadify.swf', 'uploader' : 'uploadify.php', 'width' : '120', 'fileTypeExts': '*.gif; *.jpg; *.png', 'buttonText': '上传图片', 'removeCompleted' : false, 'multi' : true, //允许多图上传 //上传成功后执行 'onUploadSuccess': function (file, data, response) { $('#' + file.id).find('.data').html(' 上传完毕'); } }); }); </script> </body> </html>
更多精彩内容,请点击《jQuery上传操作汇总》,进行深入学习和研究。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索jquery图片上传
, uploadify多图上传
, jquery多图上传
jquery上传图片
jquery多图上传插件、jquery多图上传的插件、uploadify多图上传、uploadify多图上传php、jquery uploadify插件,以便于您获取更多的相关知识。
时间: 2024-10-12 07:01:26