uploadify插件的使用
Posted Loweringye
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uploadify插件的使用相关的知识,希望对你有一定的参考价值。
插件: uploadify.css jquery.uploadify.js bootstrap html代码: <input type="file" name="uploadify_coverimg" id="uploadify" /> <div id="the_coverimg"></div> js代码: $("#uploadify").uploadify({ ‘swf‘ : ‘js/uploadify.swf‘, ‘uploader‘ : ‘/‘, ‘cancelImg‘ : ‘cancel.png‘, ‘queueID‘ : ‘the_coverimg‘, ‘auto‘ : true, ‘queueSizeLimit‘ : 10, ‘multi‘ : true, ‘buttonText‘ : ‘选择上传文件‘, ‘fileTypeDesc‘ : ‘图片文件‘, ‘fileObjName‘ : ‘image‘, ‘fileSizeLimit‘ : ‘2048KB‘, ‘formData‘ : {‘path‘:‘‘, ‘name‘:‘‘, ‘phpSESSID‘: ‘‘}, ‘fileTypeExts‘ : ‘*.jpeg;*.jpg;*.png;*.gif‘, onUploadSuccess : function(file,data,resp){ response = eval(‘(‘+data+‘)‘) } }); $("#uploadify").uploadify({ ‘swf‘ : ‘js/uploadify.swf‘, ‘uploader‘ : ‘/‘, ‘queueID‘ : ‘the_coverimg‘, ‘auto‘ : true, ‘multi‘ : false, ‘buttonText‘ : ‘选择上传文件‘, ‘fileTypeDesc‘ : ‘图片文件‘, ‘fileObjName‘ : ‘image‘, ‘formData‘ : {‘path‘:‘‘,‘PHPSESSID‘: ‘‘}, ‘fileTypeExts‘ : ‘*.jpeg;*.jpg;*.png;*.gif‘, onUploadSuccess : function(file,response,resp){ } });
以上是关于uploadify插件的使用的主要内容,如果未能解决你的问题,请参考以下文章
jQuery上传插件Uploadify使用详解(转发原作者冯威)