码迷,mamicode.com
首页 > 其他好文 > 详细

给String添加方法

时间:2015-08-19 00:13:32      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

<script type="text/javascript">
<!--
Function.prototype.method=function(name,fn){
if(!this.prototype[name]){
this.prototype[name]=fn;
return this;
}
}

String.method("aa",function(){
alert(‘ffff‘);
});
String.method("entityify",function(){
var g={
"<":"&lt;",
">":"&gt;",
"&":"&amp;",
‘"‘:"&quot"
};
return this.replace(/[<>&\"]/g,function(c){
alert(c);
return g[c];
});
});

alert("<ga&".entityify()); //显示&lt;ga&amp;
//-->
</script>

给String添加方法

标签:

原文地址:http://www.cnblogs.com/zhouzhou163/p/4741001.html

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