摘要: //大写转小写 function manualLowercase(s) { s.replace(/[A-Z]/g, function(ch) { return String.fromCharCode(ch.charCodeAt(0) | 32); }); } //小写转大写 function manualUppercase(s) { s.replace(/... 阅读全文
posted @ 2018-11-12 11:46 流年之外天空蓝 阅读(207) 评论(0) 推荐(0) 编辑