javascript 字符串对象新增 replaceAll 方法

String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase)

{

    if(! RegExp.prototype.isPrototypeOf(reallyDo))

    {

         return this.replace(new RegExp(reallyDo,(ignoreCase?"gi":g)),replaceWith);

    }

   else

   {

       return this.replace(reallyDo, replaceWith);

   }

}

posted @ 2013-09-20 12:14  未来动力  阅读(223)  评论(0编辑  收藏  举报