将JavaScript / Jquery中的第一个字母大写

时间:2015-07-22 06:22:12

标签: javascript string

这是一个测试。这是另一个测试。这也是新的考验。

这是测试。这是另一个测试。这是新的考验。

1 个答案:

答案 0 :(得分:2)

你不需要jQuery。您可以使用Javascript stringarray函数。

  1. .拆分字符串,以分隔不同的句子
  2. 修剪每个句子
  3. 首字母大写
  4. 加入.
  5. 
    
    var str = 'this is a test. this is one more test. and this also new test.';
    
    var newStr = str.split('.').map(function(el) {
      el = el.trim();
      return el.substr(0, 1).toUpperCase() + el.substr(1);
    }).join('. ');
    
    alert(newStr.trim());