Máscara nos campos

Olá pessoal!
Estou desenvolvendo uma aplicação e não sei como fazer campos com máscaras. Utilizo o framework Struts e já tentei algumas coisas, tipo:
<html:text property=“zipCode” size=“9” maxlength=“9” onkeydown=“if(this.value.length==5{this.value=this.value + ‘-’});”/>
Mas não funcionou.
Alguem tem alguma sugestão??

Obrigado! :slight_smile:

rapá…
vamo lá…

fiz um exemplinho aqui funcionando blz!
Dei o import no meu arquivo js
e na linha do cep fiz

Ps.: Tive que eliminar tag’s html pois o phpnuke não aceita

Blz?
Ai chamo a função Formata CEP no arquivo Js
A função é esta:

[code]function FormataCep(campo,tammax,teclapres) {
if (!ehNumericoPlus(teclapres)) {
teclapres.returnValue = false;
return;
}

var tecla = teclapres.keyCode;
vr = campo.value;
vr = vr.replace&#40; &quot;-&quot;, &quot;&quot; &#41;;
vr = vr.replace&#40; &quot;.&quot;, &quot;&quot; &#41;;
tam = vr.length;

if &#40;tam &lt; tammax &amp;&amp; tecla != 8&#41;&#123;
  tam = vr.length + 1 ;

  if &#40;tecla == 8 &#41;&#123;	tam = tam - 1 ; &#125;

  if &#40; tecla == 8 || tecla &gt;= 48 &amp;&amp; tecla &lt;= 57 || tecla &gt;= 96 &amp;&amp; tecla &lt;= 105 &#41;&#123;
	if &#40; tam &lt;= 3 &#41;&#123;
 		campo.value = vr ; &#125;
 	if &#40; &#40;tam &gt; 3&#41; &amp;&amp; &#40;tam &lt;= 6&#41; &#41;&#123;
 		campo.value = vr.substr&#40; 0, tam - 3 &#41; + '-' + vr.substr&#40; tam - 3, tam &#41; ; &#125;
 	if &#40; &#40;tam &gt;= 7&#41; &amp;&amp; &#40;tam &lt;= 8&#41; &#41;&#123;
 		campo.value = vr.substr&#40; 0, tam - 6 &#41; + '.' + vr.substr&#40; tam - 6, 3 &#41; + '-' + vr.substr&#40; tam - 3, tam &#41; ; &#125;
  &#125;
&#125;

}
[/code]

no mais é só…
se não funcionar grita ae

Opa Diogo!
Funcionou quase direito! :slight_smile:
Seguinte… voce poderia me passar essa função ehNumericoPlus()?
Outra coisa… o Cep está vindo num formato assim: 37.540-00
tá faltando 1 zero… tipo 37.540-000
Mudei algumas coisas no código para q conseguisse fazer isso, mas não consegui.
Mas mesmo assim, muito obrigado! :slight_smile: