Alterando tecla em formulario
Script para alterar a tecla tab pelo enter em javascript, pode ser alterado por alguma outra tecla.
Data | Autor | Changelog | Download |
---|---|---|---|
14/08/2003 11:13am | Leandro Maniezo | - | Versão 1.0 |
Data | Autor | Changelog | Download |
---|---|---|---|
14/08/2003 11:13am | Leandro Maniezo | - | Versão 1.0 |
Vc pode me ajudar?
veja:
function valida()
{
ok = nomex();
if(ok)
ok = salax();
if(ok)
document.dados.submit();
}
function nomex()
{
with(document.dados)
if (document.dados.usuario.value == 0)
{
window.alert(" É obrigatório o preenchimento do NOME DO USÚARIO correto ");
usuario.focus();
return false;
}
else
return true;
}
function salax()
{
with(document.dados)
if (document.dados.sala.value == 0)
{
window.alert(" É obrigatório o preenchimento do NÚMERO DA SALA ");
sala.focus();
return false;
}
else
return true;
}
.
.
.
.
<input type="button" value=" Enviar " onClick="valida()" >