如何将每个单词的首字母大写,如双字城市?当城市有一个词时,我的JS很好:cHIcaGO ==>芝加哥但是当它的时候san diego ==>圣地亚哥我怎样才能成为圣地亚哥?function convert_case() {
document.profile_form.city.value =
document.profile_form.city.value.substr(0,1).toUpperCase() +
document.profile_form.city.value.substr(1).toLowerCase();}
添加回答
举报
0/150
提交
取消