这是测试。这是另一个测试。这是新的考验。
答案 0 :(得分:2)
你不需要jQuery。您可以使用Javascript string
和array
函数。
.
拆分字符串,以分隔不同的句子.
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());