zoukankan      html  css  js  c++  java
  • 测试下来比较好用的jquery upload插件——uploadify

    官网:http://www.uploadify.com/

    让uploadify支持中文名文件的上传

    将uploadify.php里的

    move_uploaded_file($tempFile,$targetFile);
    
    改成
    
    move_uploaded_file($tempFile,iconv("UTF-8","gb2312", $targetFile));

    swfupload      demo比较多,但传输大文件时,总是莫名其妙的停止。

    jQuery File Upload  貌似支持分割上传,比较强大,但是好像在ie下面不支持进度条

  • 相关阅读:
    Chisel3
    Chisel3
    Chisel3
    Chisel3
    Chisel3
    Chisel3
    Chisel3
    Chisel3
    Chisel3
    UVa 12716 (GCD == XOR) GCD XOR
  • 原文地址:https://www.cnblogs.com/ericyuan/p/2729550.html
Copyright © 2011-2022 走看看