zoukankan      html  css  js  c++  java
  • JS函数扩展

    // JScript 文件
    //===================================================

    //===================================================
    //扩展Array,增加IsInAyyay函数。函数功能:判断数组是否包含某元素

    Array.prototype.IsInAyyay=function(e)
    {
        for (var i=0;i<this.length;i++)
        {
            if (this[i]==e)
            {
                return true;
            }
         }
        return false;
    }
    Array.prototype.removeEmpty=function(e)
    {
        for (var i=0;i<this.length ;i++ )
        {
            if (this[i].length==0)
            {
                this.splice(i,1);
            }
        }
        return this;
    }
    String.prototype.CutLast=function(e)
    {
        if (this.substr(this.length-1)==e)
        {
            return this.substr(0,this.length-1);
        }
        else
        {//alert("return CutLast this"+"        "+this);
            return this;
        }
    }
    String.prototype.reMoveStr=function(e)
    {
        var reg;
        if (this.indexOf(e+",")==-1)
        {
            if (this.indexOf(e)!=-1)
            {
                reg = new RegExp(e);
                return this.replace(reg,"");
           
            }
            else
            {
                return this;
            }
        }
        else
        {
            reg = new RegExp(e+",");
            return this.replace(reg,"");

        }
    }
    String.prototype.padLeft=function(e,n)
    {
        var reValue="";
        if (this.length<n)
        {
            for (var i=0;i<n-1;i++)
            {
               
                reValue+=e;
            }
            return (reValue+this);
        }
        else
        {
            return this;
        }

    }

  • 相关阅读:
    MYSQL mysql.user表中权限对应的解释
    MYSQL LOCK IN SHARE MODE&FOR UPDATE
    什么是索引
    ol,li,ul,dl,dt,dd
    CSS类与选择器【转】http://www.cnblogs.com/duanhuajian/archive/2012/12/17/2821524.html
    bootstrap笔记
    iPhone应用程序开发基础之一: IBOutlet与IBAction
    Objective-C中的加号与减号
    Linux下*.tar.gz文件解压缩命令
    【PHP+MySQL学习笔记】php操作MySQL数据库中语句
  • 原文地址:https://www.cnblogs.com/tyb1222/p/1888809.html
Copyright © 2011-2022 走看看