zoukankan      html  css  js  c++  java
  • jquery.Huploadify 上传

    html 

     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     2 <html xmlns="http://www.w3.org/1999/xhtml">
     3 <head>
     4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     5 <title>无标题文档</title>
     6 <link rel="stylesheet" type="text/css" href="Huploadify.css"/>
     7 <script type="text/javascript" src="jquery.js"></script>
     8 <script type="text/javascript" src="jquery.Huploadify.js"></script>
     9 <style type="text/css">
    10 </style>
    11 <script type="text/javascript">
    12 $(function(){
    13     $('#upload').Huploadify({
    14         auto:true,
    15         fileTypeExts:'*.*;',
    16         multi:true,
    17         formData:{key:123456,key2:'vvvv'},
    18         fileSizeLimit:9999,
    19         showUploadedPercent:true,//是否实时显示上传的百分比,如20%
    20         showUploadedSize:true,
    21         removeTimeout:9999999,
    22         uploader:'../handler/HandlerMeetingMaterial.ashx?MeetMaterialFlag=Add',
    23         onUploadStart:function(){
    24             //alert('开始上传');
    25             },
    26         onInit:function(){
    27             //alert('初始化');
    28             },
    29         onUploadComplete:function(){
    30             //alert('上传完成');
    31             },
    32         onDelete:function(file){
    33             console.log('删除的文件:'+file);
    34             console.log(file);
    35         }
    36         });
    37     });
    38 </script>
    39 </head>
    40 
    41 <body>
    42 <div id="upload"></div>
    43 </body>
    44 </html>

    js和css 库

    效果图:

  • 相关阅读:
    url-pattern / /*匹配
    velocity入门
    配置eclipse插件
    Myeclipse 2014 破解
    Eclipse kepler 安装 Dynamic Web Project差距WTP
    Errors running builder 'Faceted Project Validation Builder' on project
    JSF web.xml的各类参数属性配置
    bpm 学习笔记一
    love is ... ...
    .sh_history文件的管理机制
  • 原文地址:https://www.cnblogs.com/laopo/p/6106985.html
Copyright © 2011-2022 走看看