Uso o código abaixo para bloquear as teclas F5, ctrl n e ctrl f do teclado na minha página.
Estou tentando implementar o bloqueio da tecla ALT mas ta difícil.
alguém tem alguma dica?
<script language="JavaScript">
var placar = 0;
var competicao = 106;
c = navigator.appVersion.toLowerCase();
if (c.indexOf("msie 5") != -1)
document.write('<link href="styles-ie5.css" rel="stylesheet" type="text/css" />');
function showDown(evt)
{
evt = (evt) ? evt : ((event) ? event : null);
if (evt)
{
if (navigator.appName=="Netscape")
{
if (evt.which == 116)
{
// When F5 is pressed
cancelKey(evt);
}
else if (evt.ctrlKey && (evt.which == 82))
{
// When ctrl is pressed with R or N
cancelKey(evt);
}
}
else
{
if (event.keyCode == 116)
{
// When F5 is pressed
cancelKey(evt);
}
else if (event.ctrlKey && (event.keyCode == 78 || event.keyCode == 82))
{
// When ctrl is pressed with R or N
cancelKey(evt);
}
}
}
}
function cancelKey(evt)
{
if (evt.preventDefault)
{
evt.preventDefault();
return false;
}
else
{
evt.keyCode = 0;
evt.returnValue = false;
}
}
if (navigator.appName=="Netscape")
document.addEventListener("keypress",showDown,true);
document.onkeydown = showDown;
</script>
Pergunta
rocborges
Uso o código abaixo para bloquear as teclas F5, ctrl n e ctrl f do teclado na minha página.
Estou tentando implementar o bloqueio da tecla ALT mas ta difícil.
alguém tem alguma dica?
Link para o comentário
Compartilhar em outros sites
8 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.