eferraz Posted May 5, 2004 Report Share Posted May 5, 2004 Olá galera..tenho um form, mas ele escreve tanto maiusculo como minusculo como eu faço para deixar tudo maiusculo ou tudo minusculo.!!? Quote Link to comment Share on other sites More sharing options...
0 leo71 Posted May 6, 2004 Report Share Posted May 6, 2004 Modo para deixar o Texto apenas Maiusculo:<INPUT TYPE="TEXT" STYLE="text-transform: uppercase">Modo para deixar o Texto apenas Minusculo:<INPUT TYPE="TEXT" STYLE="text-transform: lowercase">ValeuVisita ae mano!!!http://clickgames.topcities.com/Sem o WWW Quote Link to comment Share on other sites More sharing options...
0 Pilantra Posted May 6, 2004 Report Share Posted May 6, 2004 O leo71, isso apenas muda a aparencia, porque na verdade o caracter fica minusculo, seria melhor usar puro JS ein!!!!!Coloque assim:Para ficar em maiuscula<input type=text name=Estado onKeyDown="this.value.toUpperCase()">Para ficar em minuscula<input type=text name=Estado onKeyDown="this.value.toLowerCase()">Bom meninos, espero que essa aula tenha lhes ajudado em alguma coisa hauehuaheuhauehuah!!T+Pilantra Quote Link to comment Share on other sites More sharing options...
0 leo71 Posted May 7, 2004 Report Share Posted May 7, 2004 Bom nessa voce me pegouEu pensei que mudasse em Tudo!!! Quote Link to comment Share on other sites More sharing options...
0 eferraz Posted May 13, 2004 Author Report Share Posted May 13, 2004 Para ficar em maiuscula<input type=text name=Estado onKeyDown="this.value.toUpperCase()">Para ficar em minuscula<input type=text name=Estado onKeyDown="this.value.toLowerCase()">Tentei isso.. mas isso não funcionou...porque... não funcionou... Quote Link to comment Share on other sites More sharing options...
0 John Doe Posted May 13, 2004 Report Share Posted May 13, 2004 Tenta assim: <html> <head> <script language="JavaScript"> <!-- function muda(qual) { uCase = qual.value.toUpperCase(); qual.value = uCase; } --> </script> <title>AA</title> </head> </HEAD> <BODY> <input type="text" name="Estado" onkeyup="muda(this)"><br /> <form name="f1"> Informe a data(formato dd/mm/YYYY): <input type="text" name="data" onkeypress="formata(f1.data.value)" maxlength="10"><br /> </body> </html> Abraços Quote Link to comment Share on other sites More sharing options...
0 eferraz Posted May 13, 2004 Author Report Share Posted May 13, 2004 Obrigado deu.. Certo..Obrigadão.. você me ajudaram muito.. Quote Link to comment Share on other sites More sharing options...
Question
eferraz
Olá galera..
tenho um form, mas ele escreve tanto maiusculo como minusculo como eu faço para deixar tudo maiusculo ou tudo minusculo.!!?
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.