码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript工具函数收集

时间:2015-09-18 13:29:10      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

String.prototype.startWith=function(str){
var reg=new RegExp("^"+str);
return reg.test(this);
}

String.prototype.endWith=function(str){
var reg=new RegExp(str+"$");
return reg.test(this);
}

String.prototype.format = function()
{
    var args = arguments;
    return this.replace(/\{(\d+)\}/g,                
        function(m,i){
            return args[i];
        });
}

var a = "I Love {0}, and You Love {1},Where are {0}! {4}";
alert(String.format(a, "You","Me"));
alert(a.format("You","Me"));

Javascript工具函数收集

标签:

原文地址:http://www.cnblogs.com/mengff/p/4818725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!