js首字母大写

阅读更多

--单个单词

处理方式一

function ReplaceFirstUper(str)
{  
      str = str.toLowerCase();   
      return str.replace(/\b(\w)|\s(\w)/g, function(m){
             return m.toUpperCase();
      }); 
}

处理方式二
var operate2='OR';
for (var j = 0, len = operate1.length; j< len; j++) {
       //获得unicode码
       var ch2 = operate1.charAt(j);
       if (j == 0) {
             operate2 = ch2.toUpperCase();
       }else {
             operate2+= ch2.toLowerCase();
       }
}

 

多个单词



     
      

你可能感兴趣的:(js首字母大写,js多个单词首字母大写)