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

Javascript 字符串格式化及对象类型判断

时间:2015-11-07 00:50:29      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:


//TODO 字符串格式值
String.prototype.formatValue = function(){

var args = arguments;

return this.replace(/{(\d+)}/g,function( item,index ){

return args[index];
});
};

 

(function( window ){

var Utils = {

//TODO 判断当前参数的类型
type : function( param ){

return param == null ? String( null ) : Object.prototype.toString.call( param ).toLowerCase().split(" ")[1].replace("]","") || "object";
}

};

window.Utils = Utils;

})( window );

Javascript 字符串格式化及对象类型判断

标签:

原文地址:http://www.cnblogs.com/Ming2020/p/4944027.html

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