且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何使文本字段中的所有内容都是大写字母/大写?

更新时间:2023-11-21 18:29:04

I would use CSS for this.

Just add text-transform: uppercase to your styling, and then on the server side you can convert it to uppercase.

input {
  text-transform: uppercase;
}

相关阅读

推荐文章