javascript - 请问,ajaxfileupload.js 在IE上传文件上传文件成功后执行error
阿神
阿神 2017-04-10 16:00:47
0
1
447

用ajaxfileupload.js 在IE上,上传文件执行如下函数

 uploadHttpData: function( r, type ) {
        var data = !type;
        data = type == "xml" || data ? r.responseXML : r.responseText;
        // If the type is "script", eval it in global context
        if ( type == "script" )
            jQuery.globalEval( data );
        // Get the JavaScript object, if JSON is used.
        if ( type == "json" )
            data = r.responseText;  
            if(data.indexOf('</pre>') != -1){
                data = data.substring(data.indexOf('>')+1, data.length-6);
            }
#            eval( "data = " + data);//出现异常,为什么?
        if ( type == "html" )
            jQuery("<p>").html(data).evalScripts();
        return data;
    }
阿神
阿神

闭关修行中......

全員に返信(1)
黄舟

问题已找到,从后台传到前端的数据 中文编码问题!

いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!