Forgot password
 Register account
View 213|Reply 2

[JS]单词首字母大写

[Copy link]

3200

Threads

7827

Posts

52

Reputation

Show all posts

hbghlyj posted 2022-4-26 23:26 |Read mode
We can extend the String prototype
  1. String.prototype.upper=function(){return this.split(' ').map(str=>str[0].toUpperCase()+(function(x){var arr=x.split('');arr.shift();return arr.join('')})(str).toLowerCase()).join(' ')}
Copy the Code
and use it like this:
  1. "THE CONVERSE OF ABEL'S THEOREM ON POWER SERIES By J. E. LITTLEWOOD.".upper()
Copy the Code
Output:
  1. "The Converse Of Abel's Theorem On Power Series By J. E. Littlewood."
Copy the Code

3200

Threads

7827

Posts

52

Reputation

Show all posts

original poster hbghlyj posted 2022-9-19 03:14
HTML <input> autocapitalize attribute
  1. <input type="text" autocapitalize="words" autofocus>
Copy the Code

3200

Threads

7827

Posts

52

Reputation

Show all posts

original poster hbghlyj posted 2022-9-19 03:17
hbghlyj 发表于 2022-9-18 20:14
HTML &lt;input> autocapitalize attribute
没有作用啊?
Google Chrome sample
我用Chrome没有autocapitalize效果

Quick Reply

Advanced Mode
B Color Image Link Quote Code Smilies
You have to log in before you can reply Login | Register account

$\LaTeX$ formula tutorial

Mobile version

2025-7-15 03:45 GMT+8

Powered by Discuz!

Processed in 0.012697 seconds, 22 queries