码迷,mamicode.com
首页 > 其他好文 > 详细

input输入框输入大小写字母自动转换

时间:2018-05-05 16:44:02      阅读:648      评论:0      收藏:0      [点我收藏+]

标签:元素   for   case   不同   form   cas   txt   文本   col   

input输入框输入小写字母自动转换成大写字母有两种方法

1.用js onkeyup事件,即时把字母转换为大写字母:

html里input加上

 <input type="text" id="txt1" value="" onkeyup="toUpperCase(this)"/>

js写函数

1 function toUpperCase(obj)
2  {
3  obj.value = obj.value.toUpperCase()
4  }

这种方法虽然可以,但是输入汉字的时候会受到干扰,还有一种更好的方法

加css

 <input type="text" id="txt1" value="" style="text-transform:uppercase"/>

转换不同元素中的文本:

h1 {text-transform:uppercase;}
h2 {text-transform:capitalize;}
p {text-transform:lowercase;}

 

input输入框输入大小写字母自动转换

标签:元素   for   case   不同   form   cas   txt   文本   col   

原文地址:https://www.cnblogs.com/php-qiuwei/p/8995029.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!