日期:2014-05-16 浏览次数:20420 次
function f2c(){ var entity={quot:'"',lt:'<',gt:'>'}; return function(){ return this.replace(/&([^&;]+);/g,function($0,$1){ return entity[$1]; }); } } String.prototype.deenty=f2c(); var str='<">'.deenty(); alert(str);