插件的使用-fileupload
Posted norazhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插件的使用-fileupload相关的知识,希望对你有一定的参考价值。
//fileupload 使用方法 //1. 引入文件 jQuery //建议jQuery 1.8以上版本 js/vendor/jquery.ui.widget.js // jQuery UI Widget js/jquery.iframe-transport.js // 扩展iframe数据传输 js/jquery.fileupload.js // jQuery File Upload核心类 js/cors/jquery.xdr-transport.js //在IE下应载入此文件解决跨域问题 //2 html结构 <div id="divAdd" title="添加"> <div>+</div> <input id="fileUpload" type="file" /> </div> //3 js //最基本的需求和结构 $(function () { $(‘#fileupload‘).fileupload({ dataType: ‘json‘, done: function (e, data) { $.each(data.result.files, function (index, file) { $(‘<p/>‘).text(file.name).appendTo(document.body); }); } }); });
以上是关于插件的使用-fileupload的主要内容,如果未能解决你的问题,请参考以下文章