• javascript的一些在IE下不支持的函数小结


        // ============   isArray  ===============//              
        // isArray  
        function isArray(value){  
            return Object.prototype.toString.call(value) == "[object Array]";  
        }  
        var arr = [1,2,3,4,5];  
        alert(isArray(arr)); // IE8 及以下不支持  
      // ============   filter 等  ===============//     
        // 数组的一些方法  every(), filter(), forEach(), map(), some()  
        // IE8 及以下不支持  
        // 解决办法,以filter为例,自己写一个filter  
        if (!Array.prototype.filter) {  
            Array.prototype.filter = function(fun /*, thisp*/){  
                var len = this.length;  
                if (typeof fun != "function"){  
                    throw new TypeError();  
                }  
                var res = new Array();  
                var thisp = arguments[1];  
                for (var i = 0; i < len; i++){  
                    if (i in this){  
                        var val = this[i]; // in case fun mutates this  
                        if (fun.call(thisp, val, i, this)) {  
                            res.push(val);  
                        }  
                    }  
                }  
                return res;  
            };  
        }  
          
        var numbers = [1,2,3,4,5,6];  
        var filterResult = numbers.filter(function(item, inde, array){  
            return (item>2);  
        });  
        alert(filterResult); // 3,4,5,6  
        
        // ============   Date.now()  ===============//   
        // Date.now(); IE8及以下不支持,只能自己写一个解决  
        if(!Date.now){  
            Date.now = function(){  
                return new Date().valueOf();  
            }  
        }  
        alert(Date.now());  
          
       // ============   stringValue[1]  ===============//  
        // 在IE7 及以下版本显示  undefined    
        var stringValue = "hello world";  
        alert(stringValue[1]);  
                    
        
        // ============   trim()  ===============//  
        // 在IE8 及以下版本无效,需要自己写     
        String.prototype.trim = function(){  
            return this.replace(/(^s*)(s*$)/g, "");  
        };  
          
        var stringValue2 = "   hello world  ";  
        alert(stringValue2.trim());  
  • 相关阅读:
    推荐网址:Response.WriteFile Cannot Download a Large File
    为什么是 My?
    Fox开发杂谈
    DCOM配置为匿名访问
    连接到运行 Windows 98 的计算机
    OO面向对象以后是什么
    Com+的未来是什么?
    fox 表单和类库的加密及修复
    来自 COM 经验的八个教训
    VFP的加密问题
  • 原文地址:https://www.cnblogs.com/Web-Architecture/p/7856526.html
Copyright © 2020-2023  润新知