方法一: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>输入小写字母自动转化成大写的代码</title> <script type="text/javascript"> function $(strId){ return document.getElementById(strId); } window.onload=function(){ var dgseo=$("txt1"); dgseo.onkeydown=function(e){ var evt=e||window.event; var nKeyCode=evt.keyCode||evt.which; var sInput=dgseo.value; if(nKeyCode>=65 && nKeyCode<=90){ dgseo.value=sInput+String.fromCharCode(nKeyCode); return false; }else{ return true; } } } </script> </head> <body> <input type="text" id="txt1" value=""/> </body> </html> 方法二:<input type="text" id="seo2" value="" style="text-transform:uppercase"/> 这二个方法都进行过测试过的,都没有问题。
时间: 2024-10-12 19:37:53