zoukankan      html  css  js  c++  java
  • ajax监听上传进度

    var xhrOnProgress = function(fun) {

    xhrOnProgress.onprogress = fun; //绑定监听函数

    return function() {

    var xhr = $.ajaxSettings.xhr();

    if(xhrOnProgress.onprogress == null || typeof xhrOnProgress.onprogress === 'undefined')

    return xhr;

    if(xhrOnProgress.onprogress && xhr.upload) {

    xhr.upload.onprogress = xhrOnProgress.onprogress;

    }

    return xhr;

    }

    };

     

    timeout: 1000 * 60,

    xhr: xhrOnProgress(function(e) {

    console.log(e)

    //这里是监听函数 从e中可以或得到上传进度数据

    }),

  • 相关阅读:
    C#算法收集
    算法导论数论最大公约数
    算法导论数论初等数论的概念
    Poj3090 欧拉函数求和
    算法导论数论素数测试和pollard整数因子分解
    Poj 2407
    算法导论数论模运算
    Poj2478
    Window Phone7中SL开发中的位图和从相机获取图片
    WP7中SilverLight中触摸事件和事件路由
  • 原文地址:https://www.cnblogs.com/zyzhao/p/7071052.html
Copyright © 2011-2022 走看看