5

这是我页面的标题:

<title>john smith - Site and site - jobs</title>

在第一个 hifen (-) 之前,我必须将页面标题大写。这是我的代码,但丢失了第二部分和第一个连字符。

function toTitleCase(str){
    var str  = document.title;
    subTitle = str.split('-')[0];
    return str.substring(0,str.indexOf('-')).replace(/\w\S*/g, function(txt){
        return txt.charAt(0).toUpperCase() + txt.substring(1);
    });
}
document.title = toTitleCase(document.title);
4

6 回答 6

1

加入核 REGEX 路线总是很好......

var str = "some words - are - here";
console.log("this is - a - string".replace(/^[^\-]*/, function($0) {
    return $0.replace(/\b[a-z]/g, function($0) { return $0.toUpperCase(); });
}));

输出:

"Some Words - are - here"
于 2012-07-06T11:17:30.287 回答
1
function toTitleCase(str){
    str = str.split('-');
    str[0]=str[0].replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
    return str.join("-");
    }
document.title = toTitleCase(document.title);
于 2012-07-06T11:08:53.627 回答
0

这可能有帮助..

function ok()
{
  var str  = document.title;
  document.title=str.substring(0, str.indexOf('-')).toUpperCase()+str.substring(str.indexOf('-'),str.length);

}

于 2012-07-06T11:50:48.257 回答
0

此代码将为您提供帮助。

function toTitleCase(str) {
        subTitle = str.split('-')[0].capitalize();
        return subTitle + str.substring(subTitle.length);
    }

    String.prototype.capitalize = function () {
        return this.replace(/\w\S*/g, function (txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); });
    }
于 2012-07-06T11:32:54.290 回答
0

总结答案“最好的”+我的一粒盐:

String.prototype.capitalize = function () {
  return this.replace(/\b[a-z]/g, function ($0) { return $0.toUpperCase(); });
};

function capitalizeTitle()
{
  document.title = document.title.replace(/^[^\-]*/, function($0) {
    return $0.capitalize();
  });
}

capitalizeTitle();
于 2012-07-06T11:12:34.593 回答
0

嘿,请试试这个:http: //jsfiddle.net/LK3Vd/

让我知道我是否错过了什么。

希望这可以帮助:)

代码

var str = $('#foo').html();
str = str.substring(0, str.indexOf('-'));

str = str.toLowerCase().replace(/\b[a-z]/g, function(letter) {
    return letter.toUpperCase();
});
于 2012-07-06T11:46:29.423 回答