评论:jQuery表格 可选择导出各种格式  [查看原文]

所属分类:其他-独立的部件

 51890  509  44
当前第2页 / 共2页
     0
    2016/12/21 16:12:52

    楼主, 没有jQ币, 急用能给我邮箱发一份吗, 1752322128@qq.com, 谢谢啦

        ①脐、?突?0
        2017/1/11 15:01:55

        兄弟,有没有这个插件啊,求分享,急用

    回复
    乄茗芷の等待3
    2016/12/8 9:12:21

    excel导出在2003和2007版本乱码,解决办法找到  

    var c = "<html xmlns:o='urn:schemas-microsoft-com:office:office' xmlns:x='urn:schemas-microsoft-com:office:excel' xmlns='http://www.w3.org/TR/REC-html40'>";
    c += "<head><meta charset=" + document.characterSet + " />  "

    加入加粗的那一句,也就是设置编码

    回复
    周银胜0
    2016/6/8 14:06:35
        小火车0
        2017/8/25 15:48:39

        名字好像。。。

    回复
    阿马0
    2016/5/16 16:05:03
    导出pdf不全,并且分页怎么处理呢? 回复
    应用新奇特0
    2016/3/29 22:03:13
    这个效果是不是太过时了,和其他表格有什么优越的地方呢? 回复
    xialinxgj0
    2016/1/20 16:01:46
    楼上的,怎么复制过去,不行的? 回复
    騒洋开了挂2
    2016/1/14 11:01:02

    搞定了,修改支持中文参考

    使用jquery.base64.js时发现对于中文直接抛出异常,作者压根不处理汉字的情况,因此

    对其进行修正,关键函数为:

    function _decode_chars(y, x){
          while(y.length > 0){
            var ch = y[0];
            if(ch < 0x80) {
                y.shift();
                x.push(String.fromCharCode(ch));
            }else if((ch & 0x80) == 0xc0){
                if(y.length < 2) break;
                ch = y.shift();
                var ch1 = y.shift();
                x.push(String.fromCharCode( ((ch & 0x1f) << 6) + (ch1 & 0x3f)));
            }else{
                if(y.length < 3) break;
                ch = y.shift();
                var ch1 = y.shift();
                var ch2 = y.shift();
                x.push(String.fromCharCode(((ch & 0x0f) << 12) + ((ch1 & 0x3f) << 6) + (ch2 & 0x3f)));
            }    
          }
      }
    
    
    
    function _get_chars(ch, y){
        if(ch < 0x80) y.push(ch);
        else if(ch < 0x800){
            y.push(0xc0 + ((ch >> 6) & 0x1f));
            y.push(0x80 + (ch & 0x3f));
        }else{
            y.push(0xe0 + ((ch >> 12) & 0xf));
            y.push(0x80 + ((ch >> 6) & 0x3f));
            y.push(0x80 + (ch & 0x3f));
        }
      }

    完整代码

    jQuery.base64 = ( function( $ ) {
       
      var _PADCHAR = "=",
        _ALPHA = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",
        _VERSION = "1.1";//Mr. Ruan fix to 1.1 to support asian char(utf8)
     
     
      function _getbyte64( s, i ) {
        // This is oddly fast, except on Chrome/V8.
        // Minimal or no improvement in performance by using a
        // object with properties mapping chars to value (eg. 'A': 0)
     
        var idx = _ALPHA.indexOf( s.charAt( i ) );
     
        if ( idx === -1 ) {
          throw "Cannot decode base64";
        }
     
        return idx;
      }
       
      function _decode_chars(y, x){
          while(y.length > 0){
            var ch = y[0];
            if(ch < 0x80) {
                y.shift();
                x.push(String.fromCharCode(ch));
            }else if((ch & 0x80) == 0xc0){
                if(y.length < 2) break;
                ch = y.shift();
                var ch1 = y.shift();
                x.push(String.fromCharCode( ((ch & 0x1f) << 6) + (ch1 & 0x3f)));
            }else{
                if(y.length < 3) break;
                ch = y.shift();
                var ch1 = y.shift();
                var ch2 = y.shift();
                x.push(String.fromCharCode(((ch & 0x0f) << 12) + ((ch1 & 0x3f) << 6) + (ch2 & 0x3f)));
            }    
          }
      }
       
      function _decode( s ) {
        var pads = 0,
          i,
          b10,
          imax = s.length,
          x = [],
          y = [];
     
        s = String( s );
         
        if ( imax === 0 ) {
          return s;
        }
     
        if ( imax % 4 !== 0 ) {
          throw "Cannot decode base64";
        }
     
        if ( s.charAt( imax - 1 ) === _PADCHAR ) {
          pads = 1;
     
          if ( s.charAt( imax - 2 ) === _PADCHAR ) {
            pads = 2;
          }
     
          // either way, we want to ignore this last block
          imax -= 4;
        }
     
        for ( i = 0; i < imax; i += 4 ) {
          var ch1 = _getbyte64( s, i );
          var ch2 = _getbyte64( s, i + 1);
          var ch3 = _getbyte64( s, i + 2);
          var ch4 = _getbyte64( s, i + 3);
           
          b10 = ( _getbyte64( s, i ) << 18 ) | ( _getbyte64( s, i + 1 ) << 12 ) | ( _getbyte64( s, i + 2 ) << 6 ) | _getbyte64( s, i + 3 );
          y.push(b10 >> 16);
          y.push((b10 >> 8) & 0xff);
          y.push(b10 & 0xff);
          _decode_chars(y, x);
        }
        switch ( pads ) {
          case 1:
            b10 = ( _getbyte64( s, i ) << 18 ) | ( _getbyte64( s, i + 1 ) << 12 ) | ( _getbyte64( s, i + 2 ) << 6 );
            y.push(b10 >> 16);
            y.push((b10 >> 8) & 0xff);
            break;
     
          case 2:
            b10 = ( _getbyte64( s, i ) << 18) | ( _getbyte64( s, i + 1 ) << 12 );
            y.push(b10 >> 16);
            break;
        }
        _decode_chars(y, x);
        if(y.length > 0) throw "Cannot decode base64";
        return x.join( "" );
      }
       
       
      function _get_chars(ch, y){
        if(ch < 0x80) y.push(ch);
        else if(ch < 0x800){
            y.push(0xc0 + ((ch >> 6) & 0x1f));
            y.push(0x80 + (ch & 0x3f));
        }else{
            y.push(0xe0 + ((ch >> 12) & 0xf));
            y.push(0x80 + ((ch >> 6) & 0x3f));
            y.push(0x80 + (ch & 0x3f));
        }
      }
       
       
       
      function _encode( s ) {
        if ( arguments.length !== 1 ) {
          throw "SyntaxError: exactly one argument required";
        }
     
        s = String( s );
        if ( s.length === 0 ) {
          return s;
        }
         
        //s = _encode_utf8(s);
        var i,
          b10,
          y = [],
          x = [],
          len = s.length;
        i = 0;
        while(i < len){
            _get_chars(s.charCodeAt(i), y);
            while(y.length >= 3){
                var ch1 = y.shift();
                var ch2 = y.shift();
                var ch3 = y.shift();
                b10 = ( ch1 << 16 ) | ( ch2 << 8 ) | ch3;
                x.push( _ALPHA.charAt( b10 >> 18 ) );
                x.push( _ALPHA.charAt( ( b10 >> 12 ) & 0x3F ) );
                x.push( _ALPHA.charAt( ( b10 >> 6 ) & 0x3f ) );
                x.push( _ALPHA.charAt( b10 & 0x3f ) );
            }
            i++;
        }
          
     
        switch ( y.length ) {
          case 1:
            var ch = y.shift();
            b10 = ch << 16;
            x.push( _ALPHA.charAt( b10 >> 18 ) + _ALPHA.charAt( ( b10 >> 12 ) & 0x3F ) + _PADCHAR + _PADCHAR );
            break;
     
          case 2:
            var ch1 = y.shift();
            var ch2 = y.shift();
            b10 = ( ch1 << 16 ) | ( ch2 << 8 );
            x.push( _ALPHA.charAt( b10 >> 18 ) + _ALPHA.charAt( ( b10 >> 12 ) & 0x3F ) + _ALPHA.charAt( ( b10 >> 6 ) & 0x3f ) + _PADCHAR );
            break;
        }
     
        return x.join( "" );
      }
     
     
      return {
        decode: _decode,
        encode: _encode,
        VERSION: _VERSION
      };
           
    }( jQuery ) );


        晚安、好?0
        2016/5/9 15:05:29
        excel和PNG支持中文了, 但是pdf还是不行啊,还是乱码,大神怎么解决啊
        Mr.Lov0
        2016/12/23 14:12:08
        没有jq
    回复
    淡淡蓝色0
    2016/1/8 10:01:13

    下载下来看看,是否支持word导出,

    回复
    St.Bennie0
    2016/1/3 14:01:51

    不支持中文

        Joho0
        2016/1/3 14:01:39

        可自行修改

        騒洋开了挂0
        2016/1/14 10:01:14

        怎么改啊,求指教

    回复
    晚安、好?0
    2015/12/29 14:12:06
    看起来很好 不知道好不好用 回复
    脱俗小弟0
    2015/10/16 14:10:10
    Soar0
    2015/10/15 15:10:05

    非常牛,看看整合之后怎么样

    回复
    初月の风、追逐着自由0
    2015/9/2 8:09:16

    挺实用的

        tienya0
        2016/2/7 14:02:32
        支持移动端浏览器吗,请问呢
        昔日~~流水0
        2016/7/2 11:07:39
        同上
    回复

讨论这个项目(44)回答他人问题或分享插件使用方法奖励jQ币 评论用户自律公约

取消回复