これは私のページのタイトルです:
<title>john smith - Site and site - jobs</title>
ページのタイトルは最初のハイフェン (-) まで大文字にする必要があります。これは私のコードですが、2 番目の部分と最初のハイフンが失われています。
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);